Skip to content

Commit

Permalink
ci: remove caret from webiny package deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel910 committed May 24, 2023
1 parent b6f1ac4 commit be9aeab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/prepublishOnly/src/prepublishOnly.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,16 @@ class FileLocker {
for (const key in dependencies) {
this.assertExists(dependencies);

const depVersion = dependencies[key] as string;
if (this.ignoredPackages.includes(key)) {
continue;
}

if (key.startsWith("@webiny/")) {
dependencies[key] = depVersion.replace("^", "");
continue;
}

const depVersion = dependencies[key] as string;
if (depVersion.startsWith("file:")) {
continue;
}
Expand Down

0 comments on commit be9aeab

Please sign in to comment.