Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* npm-scriptsで指定したコマンドにオプションを渡す [#a4a0b...
"scripts": {
"tsc" : "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
- package.jsonが上のような状態とする。
SHELL> tsc -v
Version 2.9.2
SHELL> npm -v
5.6.0
SHELL> npm run tsc -v (1)
5.6.0
SHELL> npm run tsc -- -v (2)
Version 2.9.2
- (1)のようにすると-vはnpmコマンドに渡る。
- よって、(2)のように--の後にオプションを渡す。
** 参考 [#f87c0ba5]
https://stackoverflow.com/questions/38030078/how-to-insta...
終了行:
* npm-scriptsで指定したコマンドにオプションを渡す [#a4a0b...
"scripts": {
"tsc" : "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
- package.jsonが上のような状態とする。
SHELL> tsc -v
Version 2.9.2
SHELL> npm -v
5.6.0
SHELL> npm run tsc -v (1)
5.6.0
SHELL> npm run tsc -- -v (2)
Version 2.9.2
- (1)のようにすると-vはnpmコマンドに渡る。
- よって、(2)のように--の後にオプションを渡す。
** 参考 [#f87c0ba5]
https://stackoverflow.com/questions/38030078/how-to-insta...
ページ名: