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 CHANGED
@@ -7,4 +7,4 @@ npm install -g embedboard-cli@alpha
7
7
  embedboard-cli --help
8
8
  ```
9
9
 
10
- This package forwards to `@kvell007/embed-labs-cli@0.1.0-alpha.41`.
10
+ This package forwards to `@kvell007/embed-labs-cli@0.1.0-alpha.42`.
@@ -7,15 +7,22 @@ const target = `${platform()}-${arch()}`;
7
7
 
8
8
  const steps = phase === "preinstall"
9
9
  ? [
10
- [3, `install: initializing (${target})`],
11
- [8, "install: preparing npm package graph"],
12
- [15, "install: resolving Embed Labs package"]
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
- [85, "install: linking CLI command"],
16
- [95, "install: finalizing package"],
17
- [100, "install: complete"]
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.41",
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.41"
20
+ "@kvell007/embed-labs-cli": "0.1.0-alpha.42"
20
21
  },
21
22
  "publishConfig": {
22
23
  "access": "public",