embedboard-cli 0.1.0-alpha.41 → 0.1.0-alpha.42
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 +15 -8
- package/package.json +3 -2
package/README.md
CHANGED
package/bin/install-progress.js
CHANGED
|
@@ -7,15 +7,22 @@ const target = `${platform()}-${arch()}`;
|
|
|
7
7
|
|
|
8
8
|
const steps = phase === "preinstall"
|
|
9
9
|
? [
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
10
|
+
[5, `install: initializing (${target})`],
|
|
11
|
+
[12, "install: checking platform"],
|
|
12
|
+
[20, "install: resolving packages"],
|
|
13
|
+
[28, "install: preparing dependency graph"]
|
|
13
14
|
]
|
|
14
|
-
:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
: phase === "install"
|
|
16
|
+
? [
|
|
17
|
+
[45, "install: installing CLI files"],
|
|
18
|
+
[60, "install: installing native bridge"],
|
|
19
|
+
[74, "install: linking package files"]
|
|
20
|
+
]
|
|
21
|
+
: [
|
|
22
|
+
[86, "install: verifying commands"],
|
|
23
|
+
[94, "install: finalizing installation"],
|
|
24
|
+
[100, "install: complete"]
|
|
25
|
+
];
|
|
19
26
|
|
|
20
27
|
for (const [percent, message] of steps) {
|
|
21
28
|
writeProgress(percent, message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "embedboard-cli",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.42",
|
|
4
4
|
"description": "EmbedBoard CLI alias package for Embed Labs Cloud integration testing.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"preinstall": "node bin/install-progress.js preinstall",
|
|
12
|
+
"install": "node bin/install-progress.js install",
|
|
12
13
|
"postinstall": "node bin/install-progress.js postinstall"
|
|
13
14
|
},
|
|
14
15
|
"files": [
|
|
@@ -16,7 +17,7 @@
|
|
|
16
17
|
"README.md"
|
|
17
18
|
],
|
|
18
19
|
"dependencies": {
|
|
19
|
-
"@kvell007/embed-labs-cli": "0.1.0-alpha.
|
|
20
|
+
"@kvell007/embed-labs-cli": "0.1.0-alpha.42"
|
|
20
21
|
},
|
|
21
22
|
"publishConfig": {
|
|
22
23
|
"access": "public",
|