@git.zone/cli 6.6.0 → 6.6.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.
@@ -20,6 +20,11 @@ jobs:
20
20
  with:
21
21
  fetch-depth: 0
22
22
  persist-credentials: false
23
+ - name: Set up manifest-pinned pnpm
24
+ uses: https://github.com/pnpm/setup@703c52620218391530e48b9e8870d5c0082e1b9b # v2.1.0
25
+ with:
26
+ install: false
27
+ cache: false
23
28
  - name: Set up pinned Deno
24
29
  uses: https://github.com/denoland/setup-deno@e95548e56dfa95d4e1a28d6f422fafe75c4c26fb # v2.0.3
25
30
  with:
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@git.zone/cli',
6
- version: '6.6.0',
6
+ version: '6.6.1',
7
7
  description: 'A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxlQUFlO0lBQ3JCLE9BQU8sRUFBRSxPQUFPO0lBQ2hCLFdBQVcsRUFBRSwrTEFBK0w7Q0FDN00sQ0FBQSJ9
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@git.zone/cli",
3
3
  "private": false,
4
- "version": "6.6.0",
4
+ "version": "6.6.1",
5
5
  "description": "A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.",
6
6
  "main": "dist_ts/index.js",
7
7
  "typings": "dist_ts/index.d.ts",
package/readme.md CHANGED
@@ -481,6 +481,10 @@ For a component that already builds and packages with `@git.zone/tspack`, select
481
481
  release scripts. Compilation stays in the component's command, and TsPack owns
482
482
  archive creation and verification. The project must install `@git.zone/tspack`
483
483
  1.1.0 or later and ignore both configured output and `dist_gitzone_retained/` in Git.
484
+ Pin pnpm 11 or later in `package.json` using `packageManager`. The workflow installs
485
+ that version directly with the pinned official `pnpm/setup` action before the
486
+ explicit frozen dependency install. This avoids an older container-provided pnpm
487
+ launcher rewriting the lockfile while selecting the project's package manager.
484
488
 
485
489
  ```json
486
490
  {
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@git.zone/cli',
6
- version: '6.6.0',
6
+ version: '6.6.1',
7
7
  description: 'A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.'
8
8
  }