mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
661 B
30 lines
661 B
import execa from 'execa';
|
|
import fse from 'fs-extra';
|
|
import glob from 'glob';
|
|
|
|
async function replace(filePath: string) {
|
|
const pkg = await fse.readJson(filePath);
|
|
|
|
const { dependencies } = pkg;
|
|
|
|
if (!dependencies) return;
|
|
|
|
Object.keys(dependencies).forEach(key => {
|
|
if (key.includes('@abp/') && key !== '@abp/utils') {
|
|
dependencies[key] = dependencies[key].replace('^', '~');
|
|
}
|
|
});
|
|
|
|
await fse.writeJson(filePath, { ...pkg, dependencies }, { spaces: 2 });
|
|
}
|
|
|
|
glob('../packages/**/package.json', {}, (er, files) => {
|
|
files.forEach(path => {
|
|
if (path.includes('node_modules')) {
|
|
return;
|
|
}
|
|
|
|
replace(path);
|
|
});
|
|
});
|