@cocreate/cli 1.54.0 → 1.54.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.
@@ -22,13 +22,13 @@ jobs:
22
22
  runs-on: ubuntu-latest
23
23
  steps:
24
24
  - name: Checkout
25
- uses: actions/checkout@v3
25
+ uses: actions/checkout@v4
26
26
  - name: Setup Node.js
27
- uses: actions/setup-node@v3
27
+ uses: actions/setup-node@v4
28
28
  with:
29
- node-version: 14
29
+ node-version: 22 # Required for the latest semantic-release plugins
30
30
  - name: Semantic Release
31
- uses: cycjimmy/semantic-release-action@v3
31
+ uses: cycjimmy/semantic-release-action@v4 # Update to v4 for better Node 20+ support
32
32
  id: semantic
33
33
  with:
34
34
  extra_plugins: |
@@ -36,7 +36,7 @@ jobs:
36
36
  @semantic-release/git
37
37
  @semantic-release/github
38
38
  env:
39
- GITHUB_TOKEN: "${{ secrets.GITHUB }}"
39
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" # Use the built-in token if possible
40
40
  NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
41
41
  outputs:
42
42
  new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
package/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## [1.54.2](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.54.1...v1.54.2) (2026-02-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * missing package and update dependencies ([5d71624](https://github.com/CoCreate-app/CoCreate-cli/commit/5d716248e62c7349b8ea4f508bb1cca095b924ad))
7
+
8
+ ## [1.54.1](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.54.0...v1.54.1) (2026-02-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * automation yaml ([f40ec08](https://github.com/CoCreate-app/CoCreate-cli/commit/f40ec08c74770a5276c551ee1d5270bdf2dfcf87))
14
+ * readme ([ee622d0](https://github.com/CoCreate-app/CoCreate-cli/commit/ee622d0d4e3e5989dd4afa0ce9a099db4f7ff19f))
15
+
1
16
  # [1.54.0](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.53.0...v1.54.0) (2025-10-11)
2
17
 
3
18
 
package/README.md CHANGED
@@ -10,6 +10,7 @@ A simple cli component in vanilla javascript. Easily configured using HTML5 attr
10
10
 
11
11
  ## [Docs & Demo](https://cocreate.app/docs/cli)
12
12
 
13
+
13
14
  For a complete guide and working demo refer to the [doumentation](https://cocreate.app/docs/cli)
14
15
 
15
16
  ## NPM
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/cli",
3
- "version": "1.54.0",
3
+ "version": "1.54.2",
4
4
  "description": "Polyrepo management bash CLI tool. Run all git commands and yarn commands on multiple repositories. Also includes a few custom macros for cloning, installing, etc.",
5
5
  "keywords": [
6
6
  "cli",
@@ -50,6 +50,7 @@
50
50
  "@cocreate/acme": "^1.3.0",
51
51
  "@cocreate/config": "^1.13.1",
52
52
  "@cocreate/file": "^1.19.4",
53
- "@cocreate/nginx": "^1.4.0"
53
+ "@cocreate/nginx": "^1.4.0",
54
+ "@google/generative-ai": "0.24.1"
54
55
  }
55
56
  }