@lzear/forge 4.1.0 → 4.1.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.
- package/dist/bin.js +2 -2
- package/package.json +5 -5
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 {
|
|
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.
|
|
3
|
+
"version": "4.1.1",
|
|
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": "
|
|
64
|
-
"@lzear/eslint-config": "
|
|
65
|
-
"@lzear/repo-lint": "
|
|
63
|
+
"@lzear/configs": "workspace:*",
|
|
64
|
+
"@lzear/eslint-config": "workspace:*",
|
|
65
|
+
"@lzear/repo-lint": "workspace:*",
|
|
66
66
|
"commander": "^14",
|
|
67
67
|
"picocolors": "^1"
|
|
68
68
|
},
|
|
@@ -108,4 +108,4 @@
|
|
|
108
108
|
"publishConfig": {
|
|
109
109
|
"access": "public"
|
|
110
110
|
}
|
|
111
|
-
}
|
|
111
|
+
}
|