@sgratzl/script_test
v1.1.0
Published
```bash git clone [email protected]/sgratzl/script_test cd script_test npm i ```
Downloads
3
Readme
script_test
Scenario 1: git clone & npm i
git clone [email protected]/sgratzl/script_test
cd script_test
npm i
will run
prepare
Scenario 2: npm publish
# extends scenario 1
npm run release:minor
will run
prepare
prepack
Scenario 3: npm git dependency
mkdir test
cd test
npm i sgratzl/script_test
will run
- install dev dependencies
prepare
prepack
see https://blog.npmjs.org/post/161081169345/v500
Git dependencies with prepare scripts will have their devDependencies installed, and npm install run in their directory before being packed.
see https://github.com/npm/npm/issues/19564
npm prepack script is run without dependencies
Scenario 4: npm published version
mkdir test
cd test
npm i @sgratzl/script_test
will run
- (none, I guess)