ctx-core 7.2.31 → 7.2.33
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/all/MAX_INT/index.d.ts +1 -0
- package/all/MAX_INT/index.js +1 -0
- package/all/rmemo/index.js +1 -0
- package/package.json +12 -14
- package/tsconfig.json +1 -1
package/all/MAX_INT/index.d.ts
CHANGED
package/all/MAX_INT/index.js
CHANGED
package/all/rmemo/index.js
CHANGED
|
@@ -14,6 +14,7 @@ let $ = globalThis.__rmemo__ ??= { q: new Set }
|
|
|
14
14
|
export function memo_(memo_def, add_def_a1) {
|
|
15
15
|
/** @type {memo_T} */
|
|
16
16
|
let memo = ()=>{
|
|
17
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
|
|
17
18
|
'val' in memo || memo__run(memo)
|
|
18
19
|
if ($.c) {
|
|
19
20
|
if (!memo.r.includes($.c.s ??= new WeakRef($.c))) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ctx-core",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.33",
|
|
4
4
|
"description": "ctx-core core library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -306,18 +306,17 @@
|
|
|
306
306
|
"./package.json": "./package.json"
|
|
307
307
|
},
|
|
308
308
|
"devDependencies": {
|
|
309
|
-
"@ctx-core/preprocess": "^0.
|
|
310
|
-
"@size-limit/preset-small-lib": "^
|
|
311
|
-
"@types/jsdom": "^
|
|
312
|
-
"@types/node": "^
|
|
313
|
-
"@types/sinon": "^
|
|
314
|
-
"c8": "^
|
|
315
|
-
"
|
|
316
|
-
"
|
|
317
|
-
"
|
|
318
|
-
"
|
|
319
|
-
"
|
|
320
|
-
"tsx": "^4.19.0",
|
|
309
|
+
"@ctx-core/preprocess": "^0.2.3",
|
|
310
|
+
"@size-limit/preset-small-lib": "^12.0.0",
|
|
311
|
+
"@types/jsdom": "^28.0.0",
|
|
312
|
+
"@types/node": "^25.3.3",
|
|
313
|
+
"@types/sinon": "^21.0.0",
|
|
314
|
+
"c8": "^11.0.0",
|
|
315
|
+
"esbuild": "^0.27.3",
|
|
316
|
+
"jsdom": "^28.1.0",
|
|
317
|
+
"sinon": "^21.0.2",
|
|
318
|
+
"size-limit": "^12.0.0",
|
|
319
|
+
"tsx": "^4.21.0",
|
|
321
320
|
"typescript": "next",
|
|
322
321
|
"uvu": "^0.5.6"
|
|
323
322
|
},
|
|
@@ -438,7 +437,6 @@
|
|
|
438
437
|
"exec": "$@",
|
|
439
438
|
"test": "pnpm run /^test:/",
|
|
440
439
|
"test:size": "size-limit",
|
|
441
|
-
"test:type": "check-dts",
|
|
442
440
|
"test:unit": "tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
|
|
443
441
|
"disable:test:coverage": "c8 pnpm test:unit"
|
|
444
442
|
}
|