node-pre-gyp-npmrc-helper

util for npm scripts to call out to node-pre-gyp but get arguments from npmrc

MIT 2 个版本
安装
npm install node-pre-gyp-npmrc-helper
yarn add node-pre-gyp-npmrc-helper
pnpm add node-pre-gyp-npmrc-helper
bun add node-pre-gyp-npmrc-helper
README

node-pre-gyp-npmrc-helper

node-pre-gyp-npmrc-helper is a command line tool for calling out to node-pre-gyp in npm scripts, but to allow it to pull arguments like runtime from npmrc. This is useful so that native modules can automatically get downloads/compile for electron or node-webkit

##Installation Install it as a dependency, and include it in your bundledDependencies, just like with node-pre-gyp. node-pre-gyp is still required, and must be configured as per usual

"dependencies": {
  "node-pre-gyp": "x.y.z",
  "node-pre-gyp-npmrc-helper": "a.b.c"
},
"bundledDependencies": [
  "node-pre-gyp",
  "node-pre-gyp-npmrc-helper"
]

##Usage: Use it just like you would use node-pre-gyp in your npm scripts.

scripts: {
  "install": "npg-npmrc-helper install --fallback-to-build"
}

instead of

scripts: {
  "install": "node-pre-gyp install --fallback-to-build"
}
版本列表
1.1.0 2015-12-01
1.0.0 2015-12-01