@kernlang/review-python 3.5.4-canary.171.1.564e2879 → 3.5.4-canary.174.1.ac4c5553

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kernlang/review-python",
3
- "version": "3.5.4-canary.171.1.564e2879",
3
+ "version": "3.5.4-canary.174.1.ac4c5553",
4
4
  "description": "Python concept mapper for kern review — tree-sitter based",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8,8 +8,8 @@
8
8
  "dependencies": {
9
9
  "tree-sitter": "^0.25.0",
10
10
  "tree-sitter-python": "^0.25.0",
11
- "@kernlang/review": "3.5.4-canary.171.1.564e2879",
12
- "@kernlang/core": "3.5.4-canary.171.1.564e2879"
11
+ "@kernlang/core": "3.5.4-canary.174.1.ac4c5553",
12
+ "@kernlang/review": "3.5.4-canary.174.1.ac4c5553"
13
13
  },
14
14
  "devDependencies": {
15
15
  "ts-morph": "^28.0.0",
@@ -32,6 +32,6 @@
32
32
  },
33
33
  "scripts": {
34
34
  "build": "tsc -b",
35
- "test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --config jest.config.js"
35
+ "test": "pnpm run build && node ../../scripts/run-node-tests.mjs \"tests/**/*.test.ts\""
36
36
  }
37
37
  }
@@ -1,4 +1,3 @@
1
- /// <reference types="jest" />
2
1
  import type { ConceptNode, EffectPayload } from '@kernlang/core';
3
2
  import { extractPythonConcepts } from '../src/mapper.js';
4
3
 
@@ -1,4 +1,3 @@
1
- /// <reference types="jest" />
2
1
  import type { ConceptNode, EntrypointPayload } from '@kernlang/core';
3
2
  import { extractPythonConcepts } from '../src/mapper.js';
4
3
 
package/tsconfig.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "strict": true,
10
10
  "esModuleInterop": true,
11
11
  "skipLibCheck": true,
12
- "types": ["node", "jest"],
12
+ "types": ["node"],
13
13
  "resolveJsonModule": true
14
14
  },
15
15
  "include": ["src"],
package/jest.config.js DELETED
@@ -1,10 +0,0 @@
1
- export default {
2
- testMatch: ['**/tests/**/*.test.ts'],
3
- extensionsToTreatAsEsm: ['.ts'],
4
- transform: {
5
- '^.+\\.ts$': ['ts-jest', { useESM: true, tsconfig: 'tsconfig.json' }],
6
- },
7
- moduleNameMapper: {
8
- '^(\\.{1,2}/.*)\\.js$': '$1',
9
- },
10
- };