climaybe 1.7.2 → 1.7.3

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
@@ -288,7 +288,7 @@ Add the following secrets to your GitHub repository (or use **GitLab CI/CD varia
288
288
 
289
289
  - **Branch:** Single default branch `main`. Feature branches open as PRs into `main`.
290
290
  - **Versioning:** [SemVer](https://semver.org/). Versions are **bumped automatically** when PRs are merged to `main` using [conventional commits](https://www.conventionalcommits.org/): `fix:` → patch, `feat:` → minor, `BREAKING CHANGE` or `feat!:` → major.
291
- - **Flow:** Merge to `main` → [Release version](.github/workflows/release-version.yml) runs semantic-release (bumps `package.json`, pushes tag) tag push triggers [Release](.github/workflows/release.yml) (tests + publish to npm). Requires `NPM_TOKEN` secret for npm publish. Do not create tags manually; only the Release version workflow creates tags so that tag and package version stay in sync.
291
+ - **Flow:** Merge to `main` → [Release version](.github/workflows/release-version.yml) runs semantic-release (bumps `package.json`, publishes to npm, pushes tag). Optional: tag push runs [Verify release tag](.github/workflows/verify-release-tag.yml) for an extra test pass and tag vs `package.json` check (no publish). Prefer [npm Trusted Publisher](https://docs.npmjs.com/trusted-publishers) (workflow file `release-version.yml`) so no long-lived `NPM_TOKEN` is needed for CI; see [CONTRIBUTING.md](CONTRIBUTING.md). Do not create tags manually; only the Release version workflow creates tags so that tag and package version stay in sync.
292
292
  - **CI:** Every PR and push to `main` runs tests on Node 20 and 22 ([CI workflow](.github/workflows/ci.yml)).
293
293
 
294
294
  See [CONTRIBUTING.md](CONTRIBUTING.md) for branch, PR, and conventional-commit details.
package/bin/version.txt CHANGED
@@ -1 +1 @@
1
- 1.7.2
1
+ 1.7.3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "climaybe",
3
- "version": "1.7.2",
3
+ "version": "1.7.3",
4
4
  "description": "Shopify CI/CD CLI — scaffolds workflows, branch strategy, and store config for single-store and multi-store theme repos",
5
5
  "type": "module",
6
6
  "bin": {
@@ -29,6 +29,10 @@
29
29
  },
30
30
  "bugs": "https://github.com/electricmaybe/climaybe/issues",
31
31
  "homepage": "https://github.com/electricmaybe/climaybe#readme",
32
+ "publishConfig": {
33
+ "access": "public",
34
+ "provenance": true
35
+ },
32
36
  "scripts": {
33
37
  "test": "node scripts/run-tests.js 2>&1 | tee test.log",
34
38
  "prepare": "husky",
@@ -56,12 +60,7 @@
56
60
  }
57
61
  ],
58
62
  "@semantic-release/release-notes-generator",
59
- [
60
- "@semantic-release/npm",
61
- {
62
- "npmPublish": false
63
- }
64
- ],
63
+ "@semantic-release/npm",
65
64
  [
66
65
  "@semantic-release/git",
67
66
  {