ctx-core 7.2.32 → 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.
@@ -1 +1,2 @@
1
1
  export declare const MAX_INT = 9007199254740991
2
+ export declare const MAX_INT32 = 2147483647
@@ -1 +1,2 @@
1
1
  export const MAX_INT = 9007199254740991
2
+ export const MAX_INT32 = 2147483647
@@ -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.32",
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.1.3",
310
- "@size-limit/preset-small-lib": "^11.1.4",
311
- "@types/jsdom": "^21.1.7",
312
- "@types/node": "^22.5.2",
313
- "@types/sinon": "^17.0.3",
314
- "c8": "^10.1.2",
315
- "check-dts": "^0.8.2",
316
- "esbuild": "^0.23.1",
317
- "jsdom": "^25.0.0",
318
- "sinon": "^18.0.0",
319
- "size-limit": "^11.1.4",
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
  }
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compileOnSave": true,
3
3
  "compilerOptions": {
4
- "module": "ESNext",
4
+ "module": "NodeNext",
5
5
  "moduleResolution": "nodenext",
6
6
  "target": "ESNext",
7
7
  "strict": true,