clientnode 4.0.1502 → 4.0.1504
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/bundle/index.js +5 -3
- package/package.json +10 -10
package/dist/bundle/index.js
CHANGED
|
@@ -399,10 +399,10 @@ var SHARED = '__core-js_shared__';
|
|
|
399
399
|
var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
400
400
|
|
|
401
401
|
(store.versions || (store.versions = [])).push({
|
|
402
|
-
version: '3.
|
|
402
|
+
version: '3.50.0',
|
|
403
403
|
mode: IS_PURE ? 'pure' : 'global',
|
|
404
404
|
copyright: '© 2013–2025 Denis Pushkarev (zloirock.ru), 2025–2026 CoreJS Company (core-js.io). All rights reserved.',
|
|
405
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
405
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.50.0/LICENSE',
|
|
406
406
|
source: 'https://github.com/zloirock/core-js'
|
|
407
407
|
});
|
|
408
408
|
|
|
@@ -936,9 +936,11 @@ module.exports = function (name) {
|
|
|
936
936
|
|
|
937
937
|
|
|
938
938
|
var store = __webpack_require__(14);
|
|
939
|
+
// eslint-disable-next-line es/no-object-create -- safe
|
|
940
|
+
var create = Object.create || Object;
|
|
939
941
|
|
|
940
942
|
module.exports = function (key, value) {
|
|
941
|
-
return store[key] || (store[key] = value ||
|
|
943
|
+
return store[key] || (store[key] = value || create(null));
|
|
942
944
|
};
|
|
943
945
|
|
|
944
946
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clientnode",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1504",
|
|
4
4
|
"description": "Handy utilities for any JavaScript environments.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"client",
|
|
@@ -83,27 +83,27 @@
|
|
|
83
83
|
"@types/ejs": "^3.1.5",
|
|
84
84
|
"@types/html-minifier": "^4.0.6",
|
|
85
85
|
"@types/imagemin": "^9.0.1",
|
|
86
|
-
"@types/node": "^26.
|
|
86
|
+
"@types/node": "^26.4.1",
|
|
87
87
|
"@types/prop-types": "^15.7.15",
|
|
88
88
|
"@types/webpack-env": "^1.18.8",
|
|
89
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
90
|
-
"@typescript-eslint/parser": "^8.
|
|
89
|
+
"@typescript-eslint/eslint-plugin": "^8.69.0",
|
|
90
|
+
"@typescript-eslint/parser": "^8.69.0",
|
|
91
91
|
"babel-plugin-polyfill-corejs3": "^1.0.0",
|
|
92
92
|
"babel-plugin-transform-rewrite-imports": "^1.5.4",
|
|
93
93
|
"clientnode": "workspace:.",
|
|
94
94
|
"eslint": "^10.9.1",
|
|
95
95
|
"eslint-config-google": "^0.14.0",
|
|
96
|
-
"eslint-plugin-jsdoc": "^64.
|
|
96
|
+
"eslint-plugin-jsdoc": "^64.3.4",
|
|
97
97
|
"favicons-webpack-plugin": "^6.0.1",
|
|
98
98
|
"image-minimizer-webpack-plugin": "^5.0.0",
|
|
99
|
-
"jest": "30.
|
|
99
|
+
"jest": "30.5.1",
|
|
100
100
|
"jsdoc": "^4.0.5",
|
|
101
101
|
"node-fetch": "^3.3.2",
|
|
102
102
|
"prop-types": "^15.8.1",
|
|
103
103
|
"rimraf": "^6.1.3",
|
|
104
|
-
"typescript-eslint": "^8.
|
|
105
|
-
"web-documentation": "^1.0.
|
|
106
|
-
"weboptimizer": "^4.0.
|
|
104
|
+
"typescript-eslint": "^8.69.0",
|
|
105
|
+
"web-documentation": "^1.0.52",
|
|
106
|
+
"weboptimizer": "^4.0.75",
|
|
107
107
|
"webpack-dev-server": "^6.0.0"
|
|
108
108
|
},
|
|
109
109
|
"peerDependencies": {
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"globals@npm:^11.1.0": "patch:globals@npm%3A11.12.0#~/.yarn/patches/globals-npm-11.12.0-1fa7f41a6c.patch",
|
|
128
128
|
"globals@npm:^14.0.0": "patch:globals@npm%3A11.12.0#~/.yarn/patches/globals-npm-11.12.0-1fa7f41a6c.patch",
|
|
129
129
|
"globals@npm:^9.18.0": "patch:globals@npm%3A11.12.0#~/.yarn/patches/globals-npm-11.12.0-1fa7f41a6c.patch",
|
|
130
|
-
"
|
|
130
|
+
"webpack": ">=5.109.2 <5.110.0"
|
|
131
131
|
},
|
|
132
132
|
"engines": {
|
|
133
133
|
"node": ">=26",
|