@command-center/command-center 0.1.0 → 0.1.2
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
|
@@ -47,22 +47,3 @@ After updating, run `command-center --version` to verify the new binary.
|
|
|
47
47
|
- **“Expected binary … was not found”** – Reinstall the package. If you are working from a git checkout, run `bun run build:binary` before linking with `npm link`.
|
|
48
48
|
- **Permission errors** – On POSIX systems, ensure the binaries in `dist/` remain executable (`chmod +x dist/command-center-*`).
|
|
49
49
|
|
|
50
|
-
## Developing From Source
|
|
51
|
-
|
|
52
|
-
The npm package does not include development tooling or source code. To contribute or build your own binaries, clone the repository and follow the instructions in `README.dev.md`.
|
|
53
|
-
|
|
54
|
-
### Release Workflow
|
|
55
|
-
|
|
56
|
-
Run these commands from `packages/command-center-cli/`:
|
|
57
|
-
|
|
58
|
-
1. `npm install`
|
|
59
|
-
2. `npm run prepare:dist`
|
|
60
|
-
3. `npm run check:dist`
|
|
61
|
-
4. `npm pack` (optional)
|
|
62
|
-
5. Install the tarball to smoke-test (optional):
|
|
63
|
-
- `npm install -g ./@command-center-command-center-<version>.tgz`
|
|
64
|
-
- `command-center --version`
|
|
65
|
-
- `npm uninstall -g @command-center/command-center`
|
|
66
|
-
6. `npm publish --access public`
|
|
67
|
-
|
|
68
|
-
Use `npm run bump:minor` (or patch/major) beforehand to increment the version as needed.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@command-center/command-center",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Binary distribution of UpToSpeed Command Center",
|
|
6
6
|
"bin": {
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"check:dist": "node ./scripts/assert-dist-binaries.cjs",
|
|
17
17
|
"prepublishOnly": "npm run prepare:dist && npm run check:dist",
|
|
18
18
|
"bump:minor": "npm version minor",
|
|
19
|
-
"
|
|
19
|
+
"bump:patch": "npm version patch",
|
|
20
|
+
"release": "npm publish"
|
|
20
21
|
},
|
|
21
22
|
"engines": {
|
|
22
23
|
"node": ">=18.0.0"
|