clientnode 3.0.1222 → 3.0.1224
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/type.d.ts +2 -6
- package/package.json +9 -9
package/dist/type.d.ts
CHANGED
|
@@ -37,9 +37,7 @@ export type TestMatchers<T extends Promise<void> | void> = Matchers<T> & {
|
|
|
37
37
|
export type ImportFunction = (id: string) => Promise<ReturnType<typeof require>>;
|
|
38
38
|
export type HTMLItem = Comment | Document | HTMLElement | Text;
|
|
39
39
|
export type Primitive = boolean | null | number | string | undefined;
|
|
40
|
-
export type Mapping<V = string, K extends string = string> =
|
|
41
|
-
[key in K]: V;
|
|
42
|
-
};
|
|
40
|
+
export type Mapping<V = string, K extends string = string> = Record<K, V>;
|
|
43
41
|
export type PlainObject<V = Primitive, K extends string = string> = {
|
|
44
42
|
[key in K]: Array<PlainObject<V, K> | V> | PlainObject<V, K> | V;
|
|
45
43
|
};
|
|
@@ -165,9 +163,7 @@ export interface CompilationResult<T = string, N extends Array<string> = Array<s
|
|
|
165
163
|
globalNames: Array<string>;
|
|
166
164
|
globalNamesUndefinedList: Array<undefined>;
|
|
167
165
|
originalScopeNames: N;
|
|
168
|
-
scopeNameMapping:
|
|
169
|
-
[key in N[number]]: string;
|
|
170
|
-
};
|
|
166
|
+
scopeNameMapping: Record<N[number], string>;
|
|
171
167
|
scopeNames: Array<string>;
|
|
172
168
|
templateFunction: TemplateFunction<T>;
|
|
173
169
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clientnode",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1224",
|
|
4
4
|
"description": "upgrade to object orientated rock solid plugins",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"client",
|
|
@@ -64,16 +64,16 @@
|
|
|
64
64
|
"@types/html-minifier": "^4.0.5",
|
|
65
65
|
"@types/imagemin": "^9.0.0",
|
|
66
66
|
"@types/jquery": "^3.5.32",
|
|
67
|
-
"@types/node": "^22.
|
|
67
|
+
"@types/node": "^22.9.0",
|
|
68
68
|
"@types/prop-types": "^15.7.13",
|
|
69
69
|
"@types/webpack-env": "^1.18.5",
|
|
70
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
71
|
-
"@typescript-eslint/parser": "^8.
|
|
72
|
-
"clientnode": "3.0.
|
|
70
|
+
"@typescript-eslint/eslint-plugin": "^8.14.0",
|
|
71
|
+
"@typescript-eslint/parser": "^8.14.0",
|
|
72
|
+
"clientnode": "3.0.1221",
|
|
73
73
|
"documentation-website": "^1.0.337",
|
|
74
|
-
"eslint": "^9.
|
|
74
|
+
"eslint": "^9.14.0",
|
|
75
75
|
"eslint-config-google": "^0.14.0",
|
|
76
|
-
"eslint-plugin-jsdoc": "^50.
|
|
76
|
+
"eslint-plugin-jsdoc": "^50.5.0",
|
|
77
77
|
"favicons-webpack-plugin": "^6.0.1",
|
|
78
78
|
"image-minimizer-webpack-plugin": "^4.1.0",
|
|
79
79
|
"jest": "^29.7.0",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"node-fetch": "^3.3.2",
|
|
83
83
|
"prop-types": "^15.8.1",
|
|
84
84
|
"rimraf": "^6.0.1",
|
|
85
|
-
"typescript-eslint": "^8.
|
|
86
|
-
"weboptimizer": "^2.0.
|
|
85
|
+
"typescript-eslint": "^8.14.0",
|
|
86
|
+
"weboptimizer": "^2.0.1536",
|
|
87
87
|
"webpack-dev-server": "^5.1.0"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|