Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

npm run dev & npm run build problem #21

Closed
masonlin opened this issue Nov 7, 2015 · 3 comments
Closed

npm run dev & npm run build problem #21

masonlin opened this issue Nov 7, 2015 · 3 comments

Comments

@masonlin
Copy link

masonlin commented Nov 7, 2015

I suffer some problems, when I step in $npm run dev or $npm run build,
the console reply the below log:

$npm run dev

0 info it worked if it ends with ok
1 verbose cli [ 'C:\Program Files\nodejs\node.exe',
1 verbose cli 'C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js',
1 verbose cli 'run',
1 verbose cli 'dev' ]
2 info using [email protected]
3 info using [email protected]
4 verbose run-script [ 'predev', 'dev', 'postdev' ]
5 info predev [email protected]
6 info dev [email protected]
7 verbose unsafe-perm in lifecycle true
8 info [email protected] Failed to exec dev script
9 verbose stack Error: [email protected] dev: NODE_ENV=development node devServer
9 verbose stack Exit status 1
9 verbose stack at EventEmitter. (C:\Program Files\nodejs\node_modules\npm\lib\utils\lifecycle.js:214:16)
9 verbose stack at emitTwo (events.js:87:13)
9 verbose stack at EventEmitter.emit (events.js:172:7)
9 verbose stack at ChildProcess. (C:\Program Files\nodejs\node_modules\npm\lib\utils\spawn.js:24:14)
9 verbose stack at emitTwo (events.js:87:13)
9 verbose stack at ChildProcess.emit (events.js:172:7)
9 verbose stack at maybeClose (internal/child_process.js:817:16)
9 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:211:5)
10 verbose pkgid [email protected]
11 verbose cwd D:\Git\repositories\react-redux-socketio-chat-master
12 error Windows_NT 10.0.10240
13 error argv "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js" "run" "dev"
14 error node v4.1.0
15 error npm v2.14.3
16 error code ELIFECYCLE
17 error [email protected] dev: NODE_ENV=development node devServer
17 error Exit status 1
18 error Failed at the [email protected] dev script 'NODE_ENV=development node devServer'.
18 error This is most likely a problem with the React-redux-socketio-chat package,
18 error not with npm itself.
18 error Tell the author that this fails on your system:
18 error NODE_ENV=development node devServer
18 error You can get their info via:
18 error npm owner ls React-redux-socketio-chat
18 error There is likely additional logging output above.
19 verbose exit [ 1, true ]

$npm run build

0 info it worked if it ends with ok
1 verbose cli [ 'C:\Program Files\nodejs\node.exe',
1 verbose cli 'C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js',
1 verbose cli 'run',
1 verbose cli 'build' ]
2 info using [email protected]
3 info using [email protected]
4 verbose run-script [ 'prebuild', 'build', 'postbuild' ]
5 info prebuild [email protected]
6 info build [email protected]
7 verbose unsafe-perm in lifecycle true
8 info [email protected] Failed to exec build script
9 verbose stack Error: [email protected] build: npm run clean && npm run build:webpack
9 verbose stack Exit status 1
9 verbose stack at EventEmitter. (C:\Program Files\nodejs\node_modules\npm\lib\utils\lifecycle.js:214:16)
9 verbose stack at emitTwo (events.js:87:13)
9 verbose stack at EventEmitter.emit (events.js:172:7)
9 verbose stack at ChildProcess. (C:\Program Files\nodejs\node_modules\npm\lib\utils\spawn.js:24:14)
9 verbose stack at emitTwo (events.js:87:13)
9 verbose stack at ChildProcess.emit (events.js:172:7)
9 verbose stack at maybeClose (internal/child_process.js:817:16)
9 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:211:5)
10 verbose pkgid [email protected]
11 verbose cwd D:\Git\repositories\react-redux-socketio-chat-master
12 error Windows_NT 10.0.10240
13 error argv "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js" "run" "build"
14 error node v4.1.0
15 error npm v2.14.3
16 error code ELIFECYCLE
17 error [email protected] build: npm run clean && npm run build:webpack
17 error Exit status 1
18 error Failed at the [email protected] build script 'npm run clean && npm run build:webpack'.
18 error This is most likely a problem with the React-redux-socketio-chat package,
18 error not with npm itself.
18 error Tell the author that this fails on your system:
18 error npm run clean && npm run build:webpack
18 error You can get their info via:
18 error npm owner ls React-redux-socketio-chat
18 error There is likely additional logging output above.
19 verbose exit [ 1, true ]

Could you please give me some suggestion?
Thank you very much.

@raineroviir
Copy link
Owner

I did a brief search, and from what I gather both your errors have to do with your OS being unable to set ENV variables properly.
please look in this thread, they have similar issues and solutions: gpbl/isomorphic500#40

@masonlin
Copy link
Author

masonlin commented Nov 8, 2015

I modify the 2 sentence to solve this issue, use the "set" and "&&" to merge the commnds in Windows OS.

"dev": "NODE_ENV=development node devServer",
"dev": "set NODE_ENV=development && node devServer",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build:webpack": "set NODE_ENV=production && webpack --config webpack.config.prod.js",

Thanks for your infomation.

@raineroviir
Copy link
Owner

Glad to help!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants