embedlabs 0.1.0-alpha.98 → 0.1.0-alpha.99
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 +2 -2
- package/bin/install-progress.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# embedlabs
|
|
2
2
|
|
|
3
|
-
Experimental npm alias for
|
|
3
|
+
Experimental npm alias for EmbedLabs CLI.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
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.
|
|
10
|
+
This package forwards to `@kvell007/embed-labs-cli@0.1.0-alpha.99`.
|
package/bin/install-progress.js
CHANGED
|
@@ -36,7 +36,7 @@ for (const [percent, message] of steps) {
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
function writeProgress(percent, message) {
|
|
39
|
-
const line = `[
|
|
39
|
+
const line = `[EmbedLabs] ${String(percent).padStart(3, " ")}% ${message}\n`;
|
|
40
40
|
if (process.stdout.isTTY || process.env.EMBEDLABS_INSTALL_NO_TTY === "1") {
|
|
41
41
|
process.stdout.write(line);
|
|
42
42
|
return;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "embedlabs",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.0-alpha.99",
|
|
4
|
+
"description": "EmbedLabs CLI alias package for local-first embedded agent testing.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -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.99"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public",
|