@locusai/cli 0.9.14 → 0.9.16

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.
Files changed (2) hide show
  1. package/bin/locus.js +4 -0
  2. package/package.json +2 -2
package/bin/locus.js CHANGED
@@ -42781,6 +42781,10 @@ function ensureGitIdentity(projectPath) {
42781
42781
  stdio: "ignore"
42782
42782
  });
42783
42783
  }
42784
+ execSync3("git config --global pull.rebase true", {
42785
+ cwd: projectPath,
42786
+ stdio: "ignore"
42787
+ });
42784
42788
  }
42785
42789
 
42786
42790
  class ConfigManager {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@locusai/cli",
3
- "version": "0.9.14",
3
+ "version": "0.9.16",
4
4
  "description": "CLI for Locus - AI-native project management platform",
5
5
  "type": "module",
6
6
  "bin": {
@@ -32,7 +32,7 @@
32
32
  "author": "",
33
33
  "license": "MIT",
34
34
  "dependencies": {
35
- "@locusai/sdk": "^0.9.14"
35
+ "@locusai/sdk": "^0.9.16"
36
36
  },
37
37
  "devDependencies": {}
38
38
  }