complete-cli 1.5.16 → 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.
@@ -58,19 +58,17 @@
58
58
  // -----------------
59
59
 
60
60
  // By default, Visual Studio Code will not automatically fill-in function arguments.
61
- "javascript.suggest.completeFunctionCalls": true,
62
- "typescript.suggest.completeFunctionCalls": true,
61
+ "js/ts.suggest.completeFunctionCalls": true,
63
62
 
64
63
  // By default, Visual Studio Code will prefer non-relative paths for deeply nested files.
65
- "javascript.preferences.importModuleSpecifier": "project-relative",
66
- "typescript.preferences.importModuleSpecifier": "project-relative",
64
+ "js/ts.preferences.importModuleSpecifier": "project-relative",
67
65
 
68
66
  // By default, Visual Studio Code will not add `import type` automatically.
69
- "typescript.preferences.preferTypeOnlyAutoImports": true,
67
+ "js/ts.preferences.preferTypeOnlyAutoImports": true,
70
68
 
71
69
  // Show TypeScript errors for files that don't happen to be currently open, which makes TypeScript
72
70
  // work similar to other compiled languages like Golang or Rust.
73
- "typescript.tsserver.experimental.enableProjectDiagnostics": true,
71
+ "js/ts.tsserver.experimental.enableProjectDiagnostics": true,
74
72
 
75
73
  // Automatically run the formatter when certain files are saved. We intentionally do not group
76
74
  // languages together because of this bug: https://github.com/microsoft/vscode/issues/168411
@@ -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.16",
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": {