ls-vertretungsplan-desktop

UNOFFICIAL Desktop App for the schedule of Lornsenschule, Schleswig
git clone git://archive.git.mtrnord.blog/MTRNord/ls-vertretungsplan-desktop.git
Log | Files | Refs | README

commit cc95e5bb8699b505e2c5b74b9311c9aad7e11520
parent 79f46a8aa352cfe091e1e950b94a4bafa3b3a789
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sun, 13 Mar 2016 15:45:21 +0100

Prepare project

Diffstat:
Abuild.cmd | 1+
Abuild.js | 17+++++++++++++++++
Aindex.html | 0
Apackage.json | 8++++++++
4 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/build.cmd b/build.cmd @@ -0,0 +1 @@ +node build.js diff --git a/build.js b/build.js @@ -0,0 +1,17 @@ +var NwBuilder = require('nw-builder'); +var nw = new NwBuilder({ + files: './cache', // use the glob format + platforms: ['win', 'linux'], + version: '0.0.1' +}); + +//Log stuff you want + +nw.on('log', console.log); + +// Build returns a promise +nw.build().then(function () { + console.log('all done!'); +}).catch(function (error) { + console.error(error); +}); diff --git a/index.html b/index.html diff --git a/package.json b/package.json @@ -0,0 +1,8 @@ +{ + "name": "nw-demo", + "version": "0.0.1", + "main": "index.html", + "devDependencies": { + "nw-builder": "^2.2.0" + } +}