del-lock-dependencies
v1.0.10
Published
Delete some dependencies in the lock file before installing dependencies in package management tools such as npm.
Downloads
7
Readme
del-lock-dependencies
Delete some dependencies in the lock file before installing dependencies in package management tools such as npm.
Installing
npm install del-lock-dependencies -D
Document
- In the package.json file.
| Params | Default | Options | Explain | | ---- | ---- | ---- | ---- | | dependencies | undefined | | The incoming package name will be removed from the lock file, and multiple package names are supported. |
{
"scripts":{
"preinstall":"npx del-lock-dependencies --dependencies vue vue-router"
}
}
- preinstall:Indicating that a script is executed before dependencies are installed, the behavior is inconsistent between Yarn and npm. Yarn recommends using postinstall and not committing the lock file of the package that needs to be removed.
- postinstall:It indicates that a script is executed after dependencies are installed, and the behavior is inconsistent between Yarn and npm. In npm, the lock file is created after the postinstall.
- Extend your own methods.
- The parameters are the same as above.
import delLockDependencies from 'del-lock-dependencies';
delLockDependencies({
dependencies:['vue','vue-router']
})