complete-cli 1.4.2 → 1.5.1
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
|
|
|
@@ -1,21 +1,3 @@
|
|
|
1
|
-
# https://git-scm.com/docs/git-config/#Documentation/git-config.txt-coreautocrlf
|
|
2
|
-
# Default value: input
|
|
3
|
-
# Explicitly setting it to false prevents Git from changing line endings at any point, which can
|
|
4
|
-
# prevent issues when Windows users collaborate with MacOS/Linus users.
|
|
5
|
-
core.autocrlf=false
|
|
6
|
-
|
|
7
|
-
# https://git-scm.com/docs/git-config/#Documentation/git-config.txt-coreignoreCase
|
|
8
|
-
# Default value: false (on Linux machines) or true (on Windows machines)
|
|
9
|
-
# Explicitly setting it to false prevents the issue where Windows users cannot pull down
|
|
10
|
-
# casing-related file renames.
|
|
11
|
-
core.ignoreCase=false
|
|
12
|
-
|
|
13
|
-
# https://git-scm.com/docs/git-config/#Documentation/git-config.txt-pullrebase
|
|
14
|
-
# Default value: false
|
|
15
|
-
# Setting this prevents spurious merge commits:
|
|
16
|
-
# https://www.endoflineblog.com/gitflow-considered-harmful
|
|
17
|
-
pull.rebase=true
|
|
18
|
-
|
|
19
1
|
# Convert all files to use "\n" line endings.
|
|
20
2
|
* text=auto eol=lf
|
|
21
3
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "complete-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "A command line tool for bootstrapping TypeScript projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@clack/prompts": "0.11.0",
|
|
35
35
|
"chalk": "5.6.2",
|
|
36
36
|
"clipanion": "4.0.0-rc.4",
|
|
37
|
-
"complete-common": "2.
|
|
37
|
+
"complete-common": "2.9.0",
|
|
38
38
|
"complete-node": "12.2.1",
|
|
39
39
|
"klaw-sync": "7.0.0",
|
|
40
40
|
"source-map-support": "0.5.21",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/klaw-sync": "6.0.5",
|
|
45
|
-
"@types/node": "24.
|
|
45
|
+
"@types/node": "24.9.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.46.
|
|
50
|
+
"typescript-eslint": "8.46.2",
|
|
51
51
|
"webpack": "5.102.1",
|
|
52
52
|
"webpack-cli": "6.0.1",
|
|
53
53
|
"webpack-shebang-plugin": "1.1.8"
|