complete-cli 1.0.28 → 1.0.30
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.
|
@@ -1,8 +1,2 @@
|
|
|
1
1
|
// eslint-disable-next-line complete/require-capital-const-assertions
|
|
2
|
-
export const LOCKED_DEPENDENCIES = [
|
|
3
|
-
{
|
|
4
|
-
name: "typescript",
|
|
5
|
-
version: "5.7.3",
|
|
6
|
-
reason: "https://github.com/typescript-eslint/typescript-eslint/issues/10884",
|
|
7
|
-
},
|
|
8
|
-
];
|
|
2
|
+
export const LOCKED_DEPENDENCIES = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "complete-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.30",
|
|
4
4
|
"description": "A command line tool for bootstrapping TypeScript projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript"
|
|
@@ -38,18 +38,18 @@
|
|
|
38
38
|
"chalk": "5.4.1",
|
|
39
39
|
"clipanion": "4.0.0-rc.4",
|
|
40
40
|
"complete-common": "1.3.0",
|
|
41
|
-
"complete-node": "
|
|
41
|
+
"complete-node": "5.1.1",
|
|
42
42
|
"klaw-sync": "6.0.0",
|
|
43
43
|
"yaml": "2.7.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/klaw-sync": "6.0.5",
|
|
47
|
-
"@types/node": "22.13.
|
|
47
|
+
"@types/node": "22.13.9",
|
|
48
48
|
"glob": "11.0.1",
|
|
49
49
|
"ts-loader": "9.5.2",
|
|
50
50
|
"tsconfig-paths-webpack-plugin": "4.2.0",
|
|
51
|
-
"typescript": "5.
|
|
52
|
-
"typescript-eslint": "8.
|
|
51
|
+
"typescript": "5.8.2",
|
|
52
|
+
"typescript-eslint": "8.26.0",
|
|
53
53
|
"webpack": "5.98.0",
|
|
54
54
|
"webpack-cli": "6.0.1",
|
|
55
55
|
"webpack-shebang-plugin": "1.1.8"
|
|
@@ -5,11 +5,4 @@ interface LockedDependency {
|
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
// eslint-disable-next-line complete/require-capital-const-assertions
|
|
8
|
-
export const LOCKED_DEPENDENCIES: readonly LockedDependency[] = [
|
|
9
|
-
{
|
|
10
|
-
name: "typescript",
|
|
11
|
-
version: "5.7.3",
|
|
12
|
-
reason:
|
|
13
|
-
"https://github.com/typescript-eslint/typescript-eslint/issues/10884",
|
|
14
|
-
},
|
|
15
|
-
];
|
|
8
|
+
export const LOCKED_DEPENDENCIES: readonly LockedDependency[] = [];
|