@xylabs/ts-scripts-yarn3 3.11.10 → 3.11.12
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.
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +9 -9
package/dist/index.d.mts
CHANGED
|
@@ -242,9 +242,9 @@ declare const updateYarnVersion: () => number;
|
|
|
242
242
|
|
|
243
243
|
declare const yarn3Only: () => number;
|
|
244
244
|
|
|
245
|
-
declare const checkResult: (name: string, result: number, level?:
|
|
245
|
+
declare const checkResult: (name: string, result: number, level?: "error" | "warn", exitOnFail?: boolean) => void;
|
|
246
246
|
|
|
247
|
-
declare const createBuildConfig: (location: string, module:
|
|
247
|
+
declare const createBuildConfig: (location: string, module: "ESNext" | "CommonJS", target: "ESNext" | "ES6", outDirSuffix: string) => Record<string, any> | undefined;
|
|
248
248
|
|
|
249
249
|
declare const defaultBuildConfig: {
|
|
250
250
|
compilerOptions: {
|
package/dist/index.d.ts
CHANGED
|
@@ -242,9 +242,9 @@ declare const updateYarnVersion: () => number;
|
|
|
242
242
|
|
|
243
243
|
declare const yarn3Only: () => number;
|
|
244
244
|
|
|
245
|
-
declare const checkResult: (name: string, result: number, level?:
|
|
245
|
+
declare const checkResult: (name: string, result: number, level?: "error" | "warn", exitOnFail?: boolean) => void;
|
|
246
246
|
|
|
247
|
-
declare const createBuildConfig: (location: string, module:
|
|
247
|
+
declare const createBuildConfig: (location: string, module: "ESNext" | "CommonJS", target: "ESNext" | "ES6", outDirSuffix: string) => Record<string, any> | undefined;
|
|
248
248
|
|
|
249
249
|
declare const defaultBuildConfig: {
|
|
250
250
|
compilerOptions: {
|
package/package.json
CHANGED
|
@@ -60,12 +60,12 @@
|
|
|
60
60
|
"@rollup/plugin-commonjs": "^26.0.1",
|
|
61
61
|
"@rollup/plugin-json": "^6.1.0",
|
|
62
62
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
63
|
-
"@types/node": "^20.14.
|
|
63
|
+
"@types/node": "^20.14.9",
|
|
64
64
|
"@types/yargs": "^17.0.32",
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
66
|
-
"@typescript-eslint/parser": "^7.
|
|
67
|
-
"@xylabs/tsconfig": "~3.11.
|
|
68
|
-
"@xylabs/tsconfig-dom": "~3.11.
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^7.14.1",
|
|
66
|
+
"@typescript-eslint/parser": "^7.14.1",
|
|
67
|
+
"@xylabs/tsconfig": "~3.11.12",
|
|
68
|
+
"@xylabs/tsconfig-dom": "~3.11.12",
|
|
69
69
|
"async-mutex": "^0.5.0",
|
|
70
70
|
"chalk": "^4.1.2",
|
|
71
71
|
"cosmiconfig": "^9.0.0",
|
|
@@ -112,11 +112,11 @@
|
|
|
112
112
|
"@types/license-checker": "^25.0.6",
|
|
113
113
|
"@types/lodash": "^4.17.5",
|
|
114
114
|
"@types/parse-git-config": "^3.0.4",
|
|
115
|
-
"@xylabs/eslint-config": "~3.11.
|
|
116
|
-
"@xylabs/tsconfig": "~3.11.
|
|
115
|
+
"@xylabs/eslint-config": "~3.11.12",
|
|
116
|
+
"@xylabs/tsconfig": "~3.11.12",
|
|
117
117
|
"eslint": "^9.5.0",
|
|
118
118
|
"publint": "^0.2.8",
|
|
119
|
-
"typescript": "^5.
|
|
119
|
+
"typescript": "^5.5.2"
|
|
120
120
|
},
|
|
121
121
|
"peerDependencies": {
|
|
122
122
|
"eslint": ">=8",
|
|
@@ -173,6 +173,6 @@
|
|
|
173
173
|
"package-clean": "echo Not cleaning..."
|
|
174
174
|
},
|
|
175
175
|
"sideEffects": false,
|
|
176
|
-
"version": "3.11.
|
|
176
|
+
"version": "3.11.12",
|
|
177
177
|
"type": "commonjs"
|
|
178
178
|
}
|