@lzear/forge 4.3.0 → 4.4.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 CHANGED
@@ -69,7 +69,7 @@ forge setup --dry # check only, do not prompt
69
69
  Fetches shared template files from the forge `main` branch and writes them locally.
70
70
 
71
71
  ```sh
72
- forge sync # write .editorconfig, .codacy.yml, lefthook.yml
72
+ forge sync # write .editorconfig, .codacy.yml, lefthook.yml, .github/zizmor.yml
73
73
  forge sync --dry # preview without writing
74
74
  ```
75
75
 
package/dist/bin.js CHANGED
@@ -258,7 +258,9 @@ program.command("update").description("update dependencies, packageManager, and
258
258
  var SYNC_FILES = [
259
259
  { src: "template/.editorconfig", dest: ".editorconfig" },
260
260
  { src: "template/.codacy.yml", dest: ".codacy.yml" },
261
- { src: "template/lefthook.yml", dest: "lefthook.yml" }
261
+ { src: "template/lefthook.yml", dest: "lefthook.yml" },
262
+ // shared as-is: allows @main refs to forge, hash-pins everything else
263
+ { src: ".github/zizmor.yml", dest: ".github/zizmor.yml" }
262
264
  ];
263
265
  var RAW_BASE = "https://raw.githubusercontent.com/lzear/forge/main";
264
266
  program.command("sync").description("sync template files from forge into this repo").option("--dry", "print what would change, do not write", false).action(async (options) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lzear/forge",
3
- "version": "4.3.0",
3
+ "version": "4.4.0",
4
4
  "description": "Umbrella package for all lzear dev tooling",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -74,9 +74,9 @@
74
74
  ],
75
75
  "dependencies": {
76
76
  "@clack/prompts": "^1",
77
- "@lzear/configs": "4.3.0",
78
- "@lzear/eslint-config": "4.3.0",
79
- "@lzear/repo-lint": "4.3.0",
77
+ "@lzear/configs": "4.4.0",
78
+ "@lzear/eslint-config": "4.4.0",
79
+ "@lzear/repo-lint": "4.4.0",
80
80
  "commander": "^15",
81
81
  "picocolors": "^1"
82
82
  },