mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
Remove npm prefix cli option usage (fixes #112)
This commit is contained in:
20
package.json
20
package.json
@@ -4,20 +4,20 @@
|
||||
"bugs": "https://github.com/hensm/fx_cast",
|
||||
"scripts": {
|
||||
"postinstall": "npm run postinstall:app && npm run postinstall:ext",
|
||||
"postinstall:app": "npm install ./app --prefix ./app",
|
||||
"postinstall:ext": "npm install ./ext --prefix ./ext",
|
||||
"postinstall:app": "cd app && npm install",
|
||||
"postinstall:ext": "cd ext && npm install",
|
||||
"build": "npm run build:app && npm run build:ext",
|
||||
"build:app": "npm run build --prefix ./app",
|
||||
"build:ext": "npm run build --prefix ./ext",
|
||||
"build:app": "cd app && npm run build",
|
||||
"build:ext": "cd ext &&npm run build",
|
||||
"package": "npm run package:app && npm run package:ext",
|
||||
"package:app": "npm run package --prefix ./app",
|
||||
"package:ext": "npm run package --prefix ./ext",
|
||||
"package:app": "cd app && npm run package",
|
||||
"package:ext": "cd ext && npm run package",
|
||||
"test": "node test/driver.js",
|
||||
"install-manifest": "npm run install-manifest --prefix ./app",
|
||||
"remove-manifest": "npm run remove-manifest --prefix ./app",
|
||||
"install-manifest": "cd app && npm run install-manifest",
|
||||
"remove-manifest": "cd app && npm run remove-manifest",
|
||||
"lint": "npm run lint:app && npm run lint:ext",
|
||||
"lint:app": "npm run lint --prefix ./app",
|
||||
"lint:ext": "npm run lint --prefix ./ext"
|
||||
"lint:app": "cd app && npm run lint",
|
||||
"lint:ext": "cd ext && npm run lint"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/minimist": "^1.2.0",
|
||||
|
||||
Reference in New Issue
Block a user