embedlabs 0.1.0-alpha.121 → 0.1.0-alpha.123
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 +1 -1
- package/bin/install-progress.js +5 -9
- package/package.json +2 -2
package/README.md
CHANGED
package/bin/install-progress.js
CHANGED
|
@@ -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
|
-
|
|
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,
|
|
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.
|
|
3
|
+
"version": "0.1.0-alpha.123",
|
|
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.
|
|
19
|
+
"@kvell007/embed-labs-cli": "0.1.0-alpha.123"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public",
|