mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-19 08:32:52 +08:00
'npm run' runs with node_modules/.bin in path
This commit is contained in:
parent
c83b0437fa
commit
abf3335415
14
package.json
14
package.json
@ -49,14 +49,14 @@
|
|||||||
"test": "karma start",
|
"test": "karma start",
|
||||||
"test:watch": "npm test -- --watch",
|
"test:watch": "npm test -- --watch",
|
||||||
"start": "npm run test:watch",
|
"start": "npm run test:watch",
|
||||||
"lint": "./node_modules/.bin/gulp lint",
|
"lint": "gulp lint",
|
||||||
"watch": "./node_modules/.bin/tsc -w",
|
"watch": "tsc -w",
|
||||||
"build": "npm run lint && npm run build:js && npm run build:esm && npm run build:bundle && npm run build:minify",
|
"build": "npm run lint && npm run build:js && npm run build:esm && npm run build:bundle && npm run build:minify",
|
||||||
"build:js": "./node_modules/.bin/tsc",
|
"build:js": "tsc",
|
||||||
"build:esm": "./node_modules/.bin/tsc -p ./tsconfig-esm.json",
|
"build:esm": "tsc -p tsconfig-esm.json",
|
||||||
"build:bundle": "./node_modules/.bin/browserify dist/index.js > dist/ionic.native.js",
|
"build:bundle": "browserify dist/index.js > dist/ionic.native.js",
|
||||||
"build:minify": "./node_modules/.bin/gulp minify:dist",
|
"build:minify": "gulp minify:dist",
|
||||||
"changelog": "./node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
||||||
"plugin:create": "gulp plugin:create"
|
"plugin:create": "gulp plugin:create"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
Loading…
Reference in New Issue
Block a user