@olhapi/maestro 0.1.0-rc.1 → 0.1.0-rc.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.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -291,8 +291,6 @@ pnpm exec turbo login
291
291
  pnpm exec turbo link
292
292
  ```
293
293
 
294
- The CI workflow is already wired to use `TURBO_TEAM` and `TURBO_TOKEN` when those GitHub variables and secrets are configured.
295
-
296
294
  Common contributor commands:
297
295
 
298
296
  ```bash
@@ -310,8 +308,9 @@ Repo-managed Git hooks stay targeted:
310
308
  - staged website changes run Astro checks and website tests
311
309
  - staged workspace and hook changes run the full `pnpm verify` suite
312
310
  - `pnpm verify` runs the JS lint/test/check/smoke flow, npm packaging unit test, and Go build/test/coverage/race gates
311
+ - `pnpm run verify:pre-push` adds current-host npm packaging smoke, the shared retry stress test, and the full retry-safety harness on top of `pnpm verify`
313
312
  - package-scoped root commands such as `pnpm run frontend:test` and `pnpm run website:build` now go through `turbo --filter=...` so they benefit from task caching too
314
- - `pre-push` now runs the same full `pnpm verify` command
313
+ - `pre-push` now runs `pnpm run verify:pre-push`, leaving GitHub Actions with the cross-platform packaging matrix and registry smoke coverage
315
314
 
316
315
  ## License
317
316
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olhapi/maestro",
3
- "version": "0.1.0-rc.1",
3
+ "version": "0.1.0-rc.2",
4
4
  "description": "Maestro CLI packaged for global npm installation",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -13,11 +13,11 @@
13
13
  "README.md"
14
14
  ],
15
15
  "optionalDependencies": {
16
- "@olhapi/maestro-darwin-arm64": "0.1.0-rc.1",
17
- "@olhapi/maestro-darwin-x64": "0.1.0-rc.1",
18
- "@olhapi/maestro-linux-x64-gnu": "0.1.0-rc.1",
19
- "@olhapi/maestro-linux-arm64-gnu": "0.1.0-rc.1",
20
- "@olhapi/maestro-win32-x64": "0.1.0-rc.1"
16
+ "@olhapi/maestro-darwin-arm64": "0.1.0-rc.2",
17
+ "@olhapi/maestro-darwin-x64": "0.1.0-rc.2",
18
+ "@olhapi/maestro-linux-x64-gnu": "0.1.0-rc.2",
19
+ "@olhapi/maestro-linux-arm64-gnu": "0.1.0-rc.2",
20
+ "@olhapi/maestro-win32-x64": "0.1.0-rc.2"
21
21
  },
22
22
  "repository": {
23
23
  "type": "git",