Browse Source

Update replace-with-tilde.ts

pull/10560/head
Mehmet Erim 5 years ago
committed by GitHub
parent
commit
cbbdd46a62
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      npm/ng-packs/scripts/replace-with-tilde.ts

2
npm/ng-packs/scripts/replace-with-tilde.ts

@ -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