embedboard-cli 0.1.0-alpha.43 → 0.1.0-alpha.45

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.
@@ -2,21 +2,27 @@
2
2
  import { writeFileSync } from "node:fs";
3
3
  import { arch, platform } from "node:os";
4
4
 
5
- const phase = process.argv[2] === "preinstall" ? "preinstall" : "postinstall";
5
+ const phase = process.argv[2] ?? "postinstall";
6
6
  const target = `${platform()}-${arch()}`;
7
-
8
7
  const steps = phase === "preinstall"
9
8
  ? [
10
9
  [5, `install: initializing (${target})`],
11
- [12, "install: checking platform"],
12
- [20, "install: resolving packages"],
13
- [28, "install: preparing dependency graph"],
14
- [36, "install: downloading packages"],
15
- [44, "install: extracting packages"],
16
- [52, "install: preparing CLI"],
10
+ [10, "install: checking platform"],
11
+ [15, "install: resolving packages"],
12
+ [20, "install: preparing dependency graph"],
13
+ [25, "install: downloading packages"],
14
+ [30, "install: downloading packages"],
15
+ [35, "install: extracting packages"],
16
+ [40, "install: extracting packages"],
17
+ [45, "install: preparing CLI"],
18
+ [50, "install: preparing CLI"],
19
+ [55, "install: preparing native bridge"],
17
20
  [60, "install: preparing native bridge"],
18
- [68, "install: preparing command links"],
19
- [76, "install: waiting for npm"]
21
+ [65, "install: preparing command links"],
22
+ [70, "install: preparing command links"],
23
+ [75, "install: waiting for npm"],
24
+ [80, "install: waiting for npm"],
25
+ [84, "install: waiting for npm"]
20
26
  ]
21
27
  : [
22
28
  [88, "install: verifying commands"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "embedboard-cli",
3
- "version": "0.1.0-alpha.43",
3
+ "version": "0.1.0-alpha.45",
4
4
  "description": "EmbedBoard CLI alias package for Embed Labs Cloud integration testing.",
5
5
  "private": false,
6
6
  "type": "module",