@agi-cli/install 0.1.37 → 0.1.39

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/package.json +1 -1
  2. package/start.js +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agi-cli/install",
3
- "version": "0.1.37",
3
+ "version": "0.1.39",
4
4
  "description": "AI-powered development assistant CLI - npm installer",
5
5
  "author": "ntishxyz",
6
6
  "license": "MIT",
package/start.js CHANGED
@@ -301,10 +301,10 @@ async function checkAndUpdateVersion(binaryPath) {
301
301
  }
302
302
 
303
303
  async function main() {
304
- // if (isInWorkspace()) {
305
- // console.log('Detected workspace environment, skipping install script.');
306
- // return;
307
- // }
304
+ if (isInWorkspace()) {
305
+ console.log('Detected workspace environment, skipping install script.');
306
+ return;
307
+ }
308
308
 
309
309
  let binaryPath = findBinaryInPath();
310
310