项目中有一个依赖是一个git的子仓库,大概是长这个样子
"some-module": "git+https://git.xx/xxx"
由于这个子仓库可能代码需要经常更新,怎么能做到每次npm install都会安装这个依赖的最新版本呢,可以利用node脚本实现。
- 在package.json中添加一条命令,执行npm install时会在最后执行到这个命令里
"scripts": {
"install": "node ./install.js"
},
- 创建install.js
const { execSync } = require('child_process');
const fs = require('fs');
const path = require('path');
// 解决每次执行npm install时,无法安装最新的依赖的问题
// 判断某个文件夹是否包含某个子文件夹
function findSomeFile(dir, findStr) {
let has = false;
if (!fs.existsSync(dir)) return false;
fs.readdirSync(dir)
.forEach((fileName) => {
if(fileName.indexOf(findStr) !== -1) {
has = true;
}
});
return has;
}
if(findSomeFile(path.resolve(process.cwd(), 'node_modules')), 'some-module') {
console.log('更新依赖')
execSync(`npm uninstall some-module`);
execSync(`npm install git+https://git.xx/xxx --save`);
}
原理就是在npm install的时候,先将模块卸载再安装。这样的话,就能确保每次install之后安装的是最新的模块