Author: jruchaud Date: 2015-04-29 08:29:53 +0000 (Wed, 29 Apr 2015) New Revision: 1290 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1290 Log: Add forget files Modified: wit/gruntfile.js Modified: wit/gruntfile.js =================================================================== --- wit/gruntfile.js 2015-04-29 08:10:20 UTC (rev 1289) +++ wit/gruntfile.js 2015-04-29 08:29:53 UTC (rev 1290) @@ -1,18 +1,26 @@ module.exports = function(grunt) { - - grunt.initOptions = function(options){ - - + grunt.initOptions = function(options) { }; grunt.initConfig({ nodewebkit: { options: { - platforms: ['win','osx',"linux"], +// platforms: ['win','osx',"linux"], + platforms: ["linux64"], buildDir: './webkitbuilds', // Where the build version of my node-webkit app is saved }, - src: ['./index.html', "./package.json", "./css/**", "./js/**"] // Your node-webkit app + src: [ // Your node-webkit app + './*.html', + './node_modules/react/dist/**', + './node_modules/bootstrap/dist/**', + './node_modules/less/dist/**', + "./package.json", + "./font/**", + "./img/**", + "./css/**", + "./js/**" + ] }, })