├── Gruntfile.js
├── app
│ ├── css
│ │ ├── main.css
│ ├── index.html
│ ├── js
│ │ ├── application.js
│ └── package.json
├── bower.json
├── package.json{
"name": "directory",
"main": "index.html",
"version": "0.0.1",
"single-instance": true,
"window": {
//"toolbar": false,
"title": "Directory",
"width": 850,
"height": 600,
"min_width": 850,
"min_height": 600
},
"chromium-args": "--child-clean-exit"
}{
"name": "directory",
"version": "0.0.0",
"main": "app/index.html",
"description": "",
"keywords": [],
"dependencies": {
"xls-to-json": "~0.2.0"
},
"devDependencies": {
"matchdep": "~0.1.2",
"grunt": "~0.4.1",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-sass": "~0.4.1",
"grunt-contrib-concat": "~0.1.3",
"grunt-contrib-jshint": "~0.4.3",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-rename": "0.0.3",
"grunt-contrib-compress": "~0.5.3",
"xls-to-json": "~0.2.0"
},
"engines": {
"node": ">=0.8.0"
}
}Work machine (cannot run the app):
node-webkit: v0.8.5
node.js: v0.10.22
Chromium: 30.0.1599.66
bower: 1.3.1
yeoman: 1.1.2 Home machine (can run the app):
node-webkit v0.8.5
node.js v0.10.22
Chromium 30.0.1599.66
bower: 1.2.8
yeoman: 1.1.2I even tried deleting my local repo, redownloading it, and reinstalling dependencies. Still having the same problem. Comparing the version information between my home machine (which can still run the app) and my work machine (which cannot run the app), it looks like bower is the only difference. I can't see that being the cause though.
Work machine (cannot run the app):
node-webkit: v0.8.5 node.js: v0.10.22 Chromium: 30.0.1599.66 bower: 1.3.1 yeoman: 1.1.2Home machine (can run the app):
node-webkit v0.8.5 node.js v0.10.22 Chromium 30.0.1599.66 bower: 1.2.8 yeoman: 1.1.2
--
You received this message because you are subscribed to the Google Groups "node-webkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to node-webkit...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
LZAntal, I posted both package.json files in the first post in this thread. I have one in my project's root (used for npm install), and the other is contained within my app root (used as manifest).
I had this problem too... I solved it having all nodejs packages inside the correct directory... Which name i dont remember :-(. Its on nodewebkit github main doc.
Outside of this directory i had only one package.json, the one nodewebkit will use