embedlabs 0.1.0-alpha.120 → 0.1.0-alpha.122

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/README.md CHANGED
@@ -7,4 +7,4 @@ npm install -g embedlabs@alpha
7
7
  embedlabs --help
8
8
  ```
9
9
 
10
- This package forwards to `@kvell007/embed-labs-cli@0.1.0-alpha.119`.
10
+ This package forwards to `@kvell007/embed-labs-cli@0.1.0-alpha.121`.
@@ -136,17 +136,13 @@ function isEmbedLabsShim(filePath) {
136
136
  }
137
137
 
138
138
  function verifyInstallState() {
139
+ if (platform() !== "win32") {
140
+ return;
141
+ }
139
142
  for (const prefix of installPrefixes()) {
140
- if (platform() === "win32") {
141
- const shimPath = join(prefix, "embedlabs.cmd");
142
- mkdirSync(dirname(shimPath), { recursive: true });
143
- writeFileSync(shimPath, windowsCmdShim(), "utf8");
144
- chmodSync(shimPath, 0o755);
145
- continue;
146
- }
147
- const shimPath = join(prefix, "bin", "embedlabs");
143
+ const shimPath = join(prefix, "embedlabs.cmd");
148
144
  mkdirSync(dirname(shimPath), { recursive: true });
149
- writeFileSync(shimPath, unixShellShim(), "utf8");
145
+ writeFileSync(shimPath, windowsCmdShim(), "utf8");
150
146
  chmodSync(shimPath, 0o755);
151
147
  }
152
148
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "embedlabs",
3
- "version": "0.1.0-alpha.120",
3
+ "version": "0.1.0-alpha.122",
4
4
  "description": "EmbedLabs CLI alias package for local-first embedded agent testing.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -16,7 +16,7 @@
16
16
  "README.md"
17
17
  ],
18
18
  "dependencies": {
19
- "@kvell007/embed-labs-cli": "0.1.0-alpha.119"
19
+ "@kvell007/embed-labs-cli": "0.1.0-alpha.121"
20
20
  },
21
21
  "publishConfig": {
22
22
  "access": "public",