Update replace-with-tilde.ts

pull/10560/head
Mehmet Erim 4 years ago committed by GitHub
parent 26bada10c8
commit cbbdd46a62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,7 +10,7 @@ async function replace(filePath: string) {
if (!dependencies) return;
Object.keys(dependencies).forEach(key => {
if (key.includes('@abp/') && key !== '@abp/utils') {
if (key.includes('@abp/')) {
dependencies[key] = dependencies[key].replace('^', '~');
}
});

Loading…
Cancel
Save