Skip to content

Commit 4c9da5d

Browse files
maxprilutskiyThe-Best-Codes
authored andcommitted
fix: use wildcard for legacy package lingo.dev dependency
Legacy packages are deprecated wrappers that should always use the latest lingo.dev version. Using wildcard (*) allows them to resolve to the local workspace version without breaking CI when version bumps happen via changesets. This fixes the frozen-lockfile error in CI after version bumps.
1 parent bb6162d commit 4c9da5d

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

legacy/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"author": "",
2323
"license": "Apache-2.0",
2424
"dependencies": {
25-
"lingo.dev": "0.117.0"
25+
"lingo.dev": "*"
2626
},
2727
"deprecated": "Replexica is now Lingo.dev! Please use our new CLI package by running: npx lingo.dev@latest. Visit https://lingo.dev for the latest features and documentation."
2828
}

legacy/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"author": "",
1717
"license": "Apache-2.0",
1818
"dependencies": {
19-
"lingo.dev": "0.117.0"
19+
"lingo.dev": "*"
2020
},
2121
"deprecated": "Replexica is now Lingo.dev! Please use our new SDK package by running: npm install lingo.dev. Visit https://lingo.dev for the latest features and documentation."
2222
}

pnpm-lock.yaml

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)