cbd*_*per 4 powershell node.js npm npm-scripts
这适用于 Powershell 命令行:
C:\rootProject\> copy ZZZ.js -destination ZZZXXX.js
Run Code Online (Sandbox Code Playgroud)
但这不起作用:
包.json
"scripts": {
"copy-script": "copy ZZZ.js -destination ZZZXXX.js"
}
Run Code Online (Sandbox Code Playgroud)
运行脚本:
C:\rootProject\> npm run copy-script
Run Code Online (Sandbox Code Playgroud)
错误
The syntax of the command is incorrect.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! test-module-imports@1.0.0 test-copy: `copy ZZZ.js -destination ZZZXXX.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the test-module-imports@1.0.0 test-copy script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\USER\AppData\Roaming\npm-cache\_logs\2019-11-29T09_29_59_261Z-debug.log
Run Code Online (Sandbox Code Playgroud)
powershell脚本内的命令之前需要该术语。
包.json
"scripts": {
"copy-script": "powershell copy ZZZ.js -destination ZZZXXX.js"
}
Run Code Online (Sandbox Code Playgroud)
现在它可以工作了:
C:\rootProject\> npm run copy-script
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3789 次 |
| 最近记录: |