@command-center/command-center 0.1.0 → 0.1.1

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
@@ -51,18 +51,3 @@ After updating, run `command-center --version` to verify the new binary.
51
51
 
52
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
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.0",
3
+ "version": "0.1.1",
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
- "release": "npm run prepare:dist && npm run check:dist && npm publish"
19
+ "bump:patch": "npm version patch",
20
+ "release": "npm publish"
20
21
  },
21
22
  "engines": {
22
23
  "node": ">=18.0.0"