complete-cli 1.4.2 → 1.5.0
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.
|
@@ -12,9 +12,12 @@
|
|
|
12
12
|
".env*": "shellscript", // e.g. ".env.example" is the same as ".env".
|
|
13
13
|
},
|
|
14
14
|
|
|
15
|
-
//
|
|
15
|
+
// Always use "lf" to be consistent with all platforms.
|
|
16
16
|
"files.eol": "\n",
|
|
17
17
|
|
|
18
|
+
// Automatically insert a trailing newline when saving a file to match the POSIX standard.
|
|
19
|
+
"files.insertFinalNewline": true,
|
|
20
|
+
|
|
18
21
|
// Automatically remove all trailing whitespace when saving a file.
|
|
19
22
|
"files.trimTrailingWhitespace": true,
|
|
20
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "complete-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "A command line tool for bootstrapping TypeScript projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript"
|
|
@@ -47,7 +47,7 @@
|
|
|
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.46.
|
|
50
|
+
"typescript-eslint": "8.46.1",
|
|
51
51
|
"webpack": "5.102.1",
|
|
52
52
|
"webpack-cli": "6.0.1",
|
|
53
53
|
"webpack-shebang-plugin": "1.1.8"
|