complete-cli 1.5.15 → 1.5.17

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.
@@ -126,6 +126,9 @@ dist
126
126
  # Stores VSCode versions used for testing VSCode extensions
127
127
  .vscode-test
128
128
 
129
+ # pnpm
130
+ .pnpm-store
131
+
129
132
  # yarn v3
130
133
  .pnp.*
131
134
  .yarn/*
@@ -21,6 +21,11 @@
21
21
  // Automatically remove all trailing whitespace when saving a file.
22
22
  "files.trimTrailingWhitespace": true,
23
23
 
24
+ // Allow custom schemas hosted on GitHub.
25
+ "json.schemaDownload.trustedDomains": {
26
+ "https://raw.githubusercontent.com/": true,
27
+ },
28
+
24
29
  // Configure glob patterns for excluding files and folders in full text searches and quick open.
25
30
  "search.exclude": {
26
31
  "**/*.mp3": true,
@@ -53,19 +58,17 @@
53
58
  // -----------------
54
59
 
55
60
  // By default, Visual Studio Code will not automatically fill-in function arguments.
56
- "javascript.suggest.completeFunctionCalls": true,
57
- "typescript.suggest.completeFunctionCalls": true,
61
+ "js/ts.suggest.completeFunctionCalls": true,
58
62
 
59
63
  // By default, Visual Studio Code will prefer non-relative paths for deeply nested files.
60
- "javascript.preferences.importModuleSpecifier": "project-relative",
61
- "typescript.preferences.importModuleSpecifier": "project-relative",
64
+ "js/ts.preferences.importModuleSpecifier": "project-relative",
62
65
 
63
66
  // By default, Visual Studio Code will not add `import type` automatically.
64
- "typescript.preferences.preferTypeOnlyAutoImports": true,
67
+ "js/ts.preferences.preferTypeOnlyAutoImports": true,
65
68
 
66
69
  // Show TypeScript errors for files that don't happen to be currently open, which makes TypeScript
67
70
  // work similar to other compiled languages like Golang or Rust.
68
- "typescript.tsserver.experimental.enableProjectDiagnostics": true,
71
+ "js/ts.tsserver.experimental.enableProjectDiagnostics": true,
69
72
 
70
73
  // Automatically run the formatter when certain files are saved. We intentionally do not group
71
74
  // languages together because of this bug: https://github.com/microsoft/vscode/issues/168411
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complete-cli",
3
- "version": "1.5.15",
3
+ "version": "1.5.17",
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": "0.11.0",
34
+ "@clack/prompts": "1.0.1",
35
35
  "chalk": "5.6.2",
36
36
  "clipanion": "4.0.0-rc.4",
37
- "complete-common": "2.14.0",
37
+ "complete-common": "2.19.1",
38
38
  "complete-node": "16.2.0",
39
39
  "klaw-sync": "7.0.0",
40
40
  "source-map-support": "0.5.21",
@@ -42,13 +42,13 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/klaw-sync": "6.0.5",
45
- "@types/node": "25.0.9",
45
+ "@types/node": "25.3.2",
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.53.0",
51
- "webpack": "5.104.1",
50
+ "typescript-eslint": "8.56.1",
51
+ "webpack": "5.105.3",
52
52
  "webpack-cli": "6.0.1",
53
53
  "webpack-shebang-plugin": "1.1.8"
54
54
  },