lingo.dev 0.79.2 → 0.79.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cli.cjs +6 -2
- package/build/cli.cjs.map +1 -1
- package/build/cli.mjs +6 -2
- package/build/cli.mjs.map +1 -1
- package/package.json +1 -1
package/build/cli.cjs
CHANGED
|
@@ -1875,13 +1875,17 @@ async function installDependencies() {
|
|
|
1875
1875
|
}
|
|
1876
1876
|
async function getPackageManager() {
|
|
1877
1877
|
const yarnLockfile = _path2.default.resolve(process.cwd(), "yarn.lock");
|
|
1878
|
-
const pnpmLockfile = _path2.default.resolve(process.cwd(), "pnpm-lock.yaml");
|
|
1879
1878
|
if (_fs2.default.existsSync(yarnLockfile)) {
|
|
1880
1879
|
return "yarn";
|
|
1881
1880
|
}
|
|
1881
|
+
const pnpmLockfile = _path2.default.resolve(process.cwd(), "pnpm-lock.yaml");
|
|
1882
1882
|
if (_fs2.default.existsSync(pnpmLockfile)) {
|
|
1883
1883
|
return "pnpm";
|
|
1884
1884
|
}
|
|
1885
|
+
const bunLockfile = _path2.default.resolve(process.cwd(), "bun.lock");
|
|
1886
|
+
if (_fs2.default.existsSync(bunLockfile)) {
|
|
1887
|
+
return "bun";
|
|
1888
|
+
}
|
|
1885
1889
|
return "npm";
|
|
1886
1890
|
}
|
|
1887
1891
|
|
|
@@ -4637,7 +4641,7 @@ var ci_default = new (0, _interactivecommander.Command)().command("ci").descript
|
|
|
4637
4641
|
// package.json
|
|
4638
4642
|
var package_default = {
|
|
4639
4643
|
name: "lingo.dev",
|
|
4640
|
-
version: "0.79.
|
|
4644
|
+
version: "0.79.3",
|
|
4641
4645
|
description: "Lingo.dev CLI",
|
|
4642
4646
|
private: false,
|
|
4643
4647
|
publishConfig: {
|