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

revert node-pre-gyp install changes #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
"example": "examples"
},
"scripts": {
"install": "npm install node-pre-gyp && ./node_modules/node-pre-gyp/bin/node-pre-gyp install --fallback-to-build",
"clean": "./node_modules/node-gyp/bin/node-gyp.js clean",
"configure": "./node_modules/node-gyp/bin/node-gyp.js configure",
"install": "node-pre-gyp install --fallback-to-build",
"clean": "node-gyp clean",
"configure": "node-gyp configure",
"lint": "clang-format-lint src/*.cc src/*.h && eslint --ext .js .",
"format": "clang-format-lint --fix src/*.cc src/*.h && eslint --fix --ext .js .",
"build": "npm run format && ./node_modules/node-gyp/bin/node-gyp.js rebuild",
"build:debug": "npm run format && ./node_modules/node-gyp/bin/node-gyp.js rebuild --debug",
"license:report": "mkdir -p report && ./node_modules/grunt/bin/grunt grunt-license-report",
"build": "npm run format && node-gyp rebuild",
"build:debug": "npm run format && node-gyp rebuild --debug",
"license:report": "mkdir -p report && grunt grunt-license-report",
"license:addheader": "license-check-and-add",
"test": "jest --verbose"
},
Expand Down