npm
unsafe-perm
I was having an issue building pixi.js and found it wasn’t running postinstall
and was instead failing with;
npm WARN lifecycle pixi.js-monorepo@~postinstall: cannot run in wd pixi.js-monorepo@ npm run bootstrap (wd=/pixi.js)
This was due to running as root
(inside a container), and the fix was to;
npm install --unsafe-perm
vscode on osx can't find node
publishing npm packages to github
In your .npmrc
;
registry=https://registry.npmjs.org/
@staff0rd:registry=https://npm.pkg.github.com/
//npm.pkg.github.com/:_authToken=your_token
In your package.json
;
"publishConfig": {
"registry":"https://npm.pkg.github.com/"
}
check updates for packages
npx npm-check-updates