@lzear/forge 4.1.0 → 4.1.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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,23 @@
1
+ # @lzear/forge
2
+
3
+ ## 4.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`76b2ce3`](https://github.com/lzear/forge/commit/76b2ce3af6e002ae7884eec50979ce8a5d5d7e3e) Thanks [@lzear](https://github.com/lzear)! - Fix publish script
8
+
9
+ - Updated dependencies [[`76b2ce3`](https://github.com/lzear/forge/commit/76b2ce3af6e002ae7884eec50979ce8a5d5d7e3e)]:
10
+ - @lzear/configs@4.1.2
11
+ - @lzear/eslint-config@4.1.2
12
+ - @lzear/repo-lint@4.1.2
13
+
14
+ ## 4.1.1
15
+
16
+ ### Patch Changes
17
+
18
+ - [`9a15611`](https://github.com/lzear/forge/commit/9a15611452c9985033183216c717aa08efba5d1e) Thanks [@lzear](https://github.com/lzear)! - Minor updates. Add @stylistic/eslint-plugin, expect less from repo-lint, ...
19
+
20
+ - Updated dependencies [[`9a15611`](https://github.com/lzear/forge/commit/9a15611452c9985033183216c717aa08efba5d1e)]:
21
+ - @lzear/configs@4.1.1
22
+ - @lzear/eslint-config@4.1.1
23
+ - @lzear/repo-lint@4.1.1
package/dist/bin.js CHANGED
@@ -2,14 +2,14 @@
2
2
 
3
3
  // src/bin.ts
4
4
  import { spawnSync } from "child_process";
5
- import { writeFile, mkdir } from "fs/promises";
5
+ import { mkdir, writeFile } from "fs/promises";
6
6
  import { createRequire } from "module";
7
7
  import { homedir } from "os";
8
8
  import path from "path";
9
9
  import * as clack from "@clack/prompts";
10
- import { checkLocal, checkRepo } from "@lzear/repo-lint";
11
10
  import { Command } from "commander";
12
11
  import pc from "picocolors";
12
+ import { checkLocal, checkRepo } from "@lzear/repo-lint";
13
13
  var require2 = createRequire(import.meta.url);
14
14
  var { version } = require2("../package.json");
15
15
  var isTTY = process.stdout.isTTY;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lzear/forge",
3
- "version": "4.1.0",
3
+ "version": "4.1.2",
4
4
  "description": "Umbrella package for all lzear dev tooling",
5
5
  "repository": {
6
6
  "type": "git",
@@ -60,9 +60,9 @@
60
60
  },
61
61
  "dependencies": {
62
62
  "@clack/prompts": "^1",
63
- "@lzear/configs": "4.1.0",
64
- "@lzear/eslint-config": "4.1.0",
65
- "@lzear/repo-lint": "4.1.0",
63
+ "@lzear/configs": "4.1.2",
64
+ "@lzear/eslint-config": "4.1.2",
65
+ "@lzear/repo-lint": "4.1.2",
66
66
  "commander": "^14",
67
67
  "picocolors": "^1"
68
68
  },