climaybe 2.2.5 → 2.3.0
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 +3 -1
- package/bin/version.txt +1 -1
- package/package.json +14 -9
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Shopify CLI for **theme CI/CD** (GitHub Actions, branches, multi-store config) and light **app repo** setup. Same install works in theme or app repositories.
|
|
4
4
|
|
|
5
|
+
Built by [Electric Maybe](https://electricmaybe.com) — a Shopify-focused product and development studio.
|
|
6
|
+
|
|
5
7
|
**Commit linting and Cursor bundle (optional in both flows):**
|
|
6
8
|
|
|
7
9
|
- **Conventional commit linting:** During `climaybe theme init` or `climaybe app init`, you can install [commitlint](https://commitlint.js.org/) and [Husky](https://typicode.github.io/husky) for [Conventional Commits](https://www.conventionalcommits.org/).
|
|
@@ -336,7 +338,7 @@ Add the following secrets to your GitHub repository (or use **GitLab CI/CD varia
|
|
|
336
338
|
|
|
337
339
|
- **Branch:** Single default branch `main`. Feature branches open as PRs into `main`.
|
|
338
340
|
- **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.
|
|
339
|
-
- **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.
|
|
341
|
+
- **Flow:** Merge to `main` → [Release version](.github/workflows/release-version.yml) runs semantic-release (bumps `package.json`, creates GitHub Release notes, 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). We publish to **npmjs.com** only (not GitHub Packages). 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.
|
|
340
342
|
- **CI:** Every PR and push to `main` runs tests on Node 20 and 22 ([CI workflow](.github/workflows/ci.yml)).
|
|
341
343
|
|
|
342
344
|
See [CONTRIBUTING.md](CONTRIBUTING.md) for branch, PR, and conventional-commit details.
|
package/bin/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.3.0
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "climaybe",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Shopify CLI
|
|
3
|
+
"version": "2.3.0",
|
|
4
|
+
"description": "Shopify CLI by Electric Maybe for theme CI/CD workflows, branch orchestration, app setup, and dev tooling",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"climaybe": "bin/cli.js"
|
|
@@ -15,20 +15,23 @@
|
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"shopify",
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"theme",
|
|
21
|
-
"
|
|
22
|
-
"github-actions"
|
|
18
|
+
"shopify-cli",
|
|
19
|
+
"shopify-theme",
|
|
20
|
+
"theme-development",
|
|
21
|
+
"ci-cd",
|
|
22
|
+
"github-actions",
|
|
23
|
+
"workflow-automation",
|
|
24
|
+
"release-automation",
|
|
25
|
+
"electric-maybe"
|
|
23
26
|
],
|
|
24
|
-
"author": "Electric Maybe",
|
|
27
|
+
"author": "Electric Maybe (https://electricmaybe.com)",
|
|
25
28
|
"license": "MIT",
|
|
26
29
|
"repository": {
|
|
27
30
|
"type": "git",
|
|
28
31
|
"url": "git+https://github.com/electricmaybe/climaybe.git"
|
|
29
32
|
},
|
|
30
33
|
"bugs": "https://github.com/electricmaybe/climaybe/issues",
|
|
31
|
-
"homepage": "https://
|
|
34
|
+
"homepage": "https://electricmaybe.com",
|
|
32
35
|
"publishConfig": {
|
|
33
36
|
"access": "public",
|
|
34
37
|
"provenance": true
|
|
@@ -60,6 +63,7 @@
|
|
|
60
63
|
}
|
|
61
64
|
],
|
|
62
65
|
"@semantic-release/release-notes-generator",
|
|
66
|
+
"@semantic-release/github",
|
|
63
67
|
"@semantic-release/npm",
|
|
64
68
|
[
|
|
65
69
|
"@semantic-release/git",
|
|
@@ -82,6 +86,7 @@
|
|
|
82
86
|
"@commitlint/cli": "^20.4.4",
|
|
83
87
|
"@commitlint/config-conventional": "^20.4.4",
|
|
84
88
|
"@semantic-release/git": "^10.0.1",
|
|
89
|
+
"@semantic-release/github": "^11.0.6",
|
|
85
90
|
"@semantic-release/npm": "^13.1.5",
|
|
86
91
|
"husky": "^9.1.7",
|
|
87
92
|
"semantic-release": "^25.0.3"
|