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.mjs CHANGED
@@ -1875,13 +1875,17 @@ async function installDependencies() {
1875
1875
  }
1876
1876
  async function getPackageManager() {
1877
1877
  const yarnLockfile = path11.resolve(process.cwd(), "yarn.lock");
1878
- const pnpmLockfile = path11.resolve(process.cwd(), "pnpm-lock.yaml");
1879
1878
  if (fs9.existsSync(yarnLockfile)) {
1880
1879
  return "yarn";
1881
1880
  }
1881
+ const pnpmLockfile = path11.resolve(process.cwd(), "pnpm-lock.yaml");
1882
1882
  if (fs9.existsSync(pnpmLockfile)) {
1883
1883
  return "pnpm";
1884
1884
  }
1885
+ const bunLockfile = path11.resolve(process.cwd(), "bun.lock");
1886
+ if (fs9.existsSync(bunLockfile)) {
1887
+ return "bun";
1888
+ }
1885
1889
  return "npm";
1886
1890
  }
1887
1891
 
@@ -4637,7 +4641,7 @@ var ci_default = new Command10().command("ci").description("Run Lingo.dev CI/CD
4637
4641
  // package.json
4638
4642
  var package_default = {
4639
4643
  name: "lingo.dev",
4640
- version: "0.79.2",
4644
+ version: "0.79.3",
4641
4645
  description: "Lingo.dev CLI",
4642
4646
  private: false,
4643
4647
  publishConfig: {