@cluerise/tools 5.4.3 → 5.4.5
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/configs/.nvmrc +1 -1
- package/dist/scripts/init/main.js +2 -5
- package/package.json +13 -13
package/dist/configs/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v25.
|
|
1
|
+
v25.9.0
|
|
@@ -367,7 +367,7 @@ var ToolInitializer = class {
|
|
|
367
367
|
await FileUtils.copyFile(this.#configDirectory, ".nvmrc");
|
|
368
368
|
}
|
|
369
369
|
async #initPnpm() {
|
|
370
|
-
await FileUtils.createFile("pnpm-workspace.yaml", "engineStrict: true\ngitChecks: false\nincludeWorkspaceRoot: true\n\npublicHoistPattern:\n - '@commitlint/cli'\n - eslint\n - lint-staged\n - prettier\n - prettier-plugin-sh\n");
|
|
370
|
+
await FileUtils.createFile("pnpm-workspace.yaml", "engineStrict: true\ngitChecks: false\nincludeWorkspaceRoot: true\nminimumReleaseAge: 4320 # 3 days\nminimumReleaseAgeExclude:\n - '@cluerise/*'\n\npublicHoistPattern:\n - '@commitlint/cli'\n - eslint\n - lint-staged\n - prettier\n - prettier-plugin-sh\n");
|
|
371
371
|
}
|
|
372
372
|
async #initPrettier() {
|
|
373
373
|
const configPath = "prettier.config.js";
|
|
@@ -430,10 +430,7 @@ var ToolInitializer = class {
|
|
|
430
430
|
case "release": return this.#initRelease();
|
|
431
431
|
case "typescript": return this.#initTypeScript();
|
|
432
432
|
case "vscode": return this.#initVSCode();
|
|
433
|
-
default: {
|
|
434
|
-
const unhandledToolName = toolName;
|
|
435
|
-
throw new Error(`Unknown tool name: ${unhandledToolName}`);
|
|
436
|
-
}
|
|
433
|
+
default: throw new Error(`Unknown tool name: ${toolName}`);
|
|
437
434
|
}
|
|
438
435
|
}
|
|
439
436
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cluerise/tools",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.5",
|
|
4
4
|
"description": "Tools for maintaining TypeScript projects.",
|
|
5
5
|
"author": "Branislav Holý <brano@holy.am>",
|
|
6
6
|
"repository": "github:cluerise/tools",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@actions/core": "3.0.0",
|
|
21
|
-
"@commitlint/cli": "20.
|
|
22
|
-
"@commitlint/config-conventional": "20.
|
|
23
|
-
"@commitlint/load": "20.
|
|
24
|
-
"@commitlint/types": "20.
|
|
21
|
+
"@commitlint/cli": "20.5.0",
|
|
22
|
+
"@commitlint/config-conventional": "20.5.0",
|
|
23
|
+
"@commitlint/load": "20.5.0",
|
|
24
|
+
"@commitlint/types": "20.5.0",
|
|
25
25
|
"@eslint/js": "9.39.4",
|
|
26
|
-
"@eslint/json": "1.
|
|
27
|
-
"@eslint/markdown": "
|
|
26
|
+
"@eslint/json": "1.2.0",
|
|
27
|
+
"@eslint/markdown": "8.0.1",
|
|
28
28
|
"@html-eslint/eslint-plugin": "0.58.1",
|
|
29
29
|
"@html-eslint/parser": "0.58.1",
|
|
30
|
-
"@typescript-eslint/parser": "8.
|
|
31
|
-
"conventional-changelog-conventionalcommits": "9.3.
|
|
30
|
+
"@typescript-eslint/parser": "8.58.0",
|
|
31
|
+
"conventional-changelog-conventionalcommits": "9.3.1",
|
|
32
32
|
"eslint": "9.39.4",
|
|
33
33
|
"eslint-config-prettier": "10.1.8",
|
|
34
34
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
35
35
|
"eslint-plugin-import": "2.32.0",
|
|
36
36
|
"eslint-plugin-prettier": "5.5.5",
|
|
37
37
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
38
|
-
"eslint-plugin-unicorn": "
|
|
38
|
+
"eslint-plugin-unicorn": "64.0.0",
|
|
39
39
|
"eslint-plugin-yml": "3.3.1",
|
|
40
40
|
"glob": "13.0.6",
|
|
41
41
|
"globals": "17.4.0",
|
|
42
|
-
"lint-staged": "16.
|
|
42
|
+
"lint-staged": "16.4.0",
|
|
43
43
|
"prettier": "3.8.1",
|
|
44
44
|
"prettier-plugin-sh": "0.18.0",
|
|
45
45
|
"semantic-release": "25.0.3",
|
|
46
46
|
"semver": "7.7.4",
|
|
47
|
-
"smol-toml": "1.6.
|
|
48
|
-
"typescript-eslint": "8.
|
|
47
|
+
"smol-toml": "1.6.1",
|
|
48
|
+
"typescript-eslint": "8.58.0",
|
|
49
49
|
"zod": "4.3.6"
|
|
50
50
|
}
|
|
51
51
|
}
|