complete-cli 1.5.17 → 1.5.19

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.
@@ -5,15 +5,16 @@
5
5
 
6
6
  /** @type {import("knip").KnipConfig} */
7
7
  const config = {
8
- ignore: [
9
- "eslint.config.mjs", // ESLint is provided by "complete-lint".
10
- "prettier.config.mjs", // Prettier is provided by "complete-lint".
11
- ],
12
- ignoreBinaries: [
13
- "tsx", // This is provided by "complete-lint".
14
- ],
8
+ eslint: {},
9
+ prettier: {},
10
+
15
11
  ignoreDependencies: [
16
12
  "complete-lint", // This is a linting meta-package.
13
+ "eslint", // Provided by "complete-lint".
14
+ "eslint-config-complete", // Provided by "complete-lint".
15
+ "prettier", // Provided by "complete-lint".
16
+ "prettier-plugin-organize-imports", // Provided by "complete-lint".
17
+ "prettier-plugin-packagejson", // Provided by "complete-lint".
17
18
  ],
18
19
  };
19
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complete-cli",
3
- "version": "1.5.17",
3
+ "version": "1.5.19",
4
4
  "description": "A command line tool for bootstrapping TypeScript projects.",
5
5
  "keywords": [
6
6
  "typescript"
@@ -31,10 +31,10 @@
31
31
  "test": "bun test"
32
32
  },
33
33
  "dependencies": {
34
- "@clack/prompts": "1.0.1",
34
+ "@clack/prompts": "1.1.0",
35
35
  "chalk": "5.6.2",
36
36
  "clipanion": "4.0.0-rc.4",
37
- "complete-common": "2.19.1",
37
+ "complete-common": "2.20.1",
38
38
  "complete-node": "16.2.0",
39
39
  "klaw-sync": "7.0.0",
40
40
  "source-map-support": "0.5.21",
@@ -42,14 +42,12 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/klaw-sync": "6.0.5",
45
- "@types/node": "25.3.2",
45
+ "@types/node": "25.4.0",
46
46
  "@types/source-map-support": "0.5.10",
47
47
  "ts-loader": "9.5.4",
48
48
  "tsconfig-paths-webpack-plugin": "4.2.0",
49
49
  "typescript": "5.9.3",
50
- "typescript-eslint": "8.56.1",
51
- "webpack": "5.105.3",
52
- "webpack-cli": "6.0.1",
50
+ "webpack": "5.105.4",
53
51
  "webpack-shebang-plugin": "1.1.8"
54
52
  },
55
53
  "engines": {