@fabricorg/databricks-testkit 0.6.2 → 0.7.0

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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +1 -10
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # @fabricorg/databricks-testkit
2
2
 
3
+ This package is ESM-only. Use `import` from TypeScript or JavaScript on Node 22
4
+ or newer; CommonJS `require()` is not an exported runtime surface.
5
+
3
6
  Testing toolkit for Databricks artifacts (ADR-0006). One `ExecutionContext`,
4
7
  two profiles:
5
8
 
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@fabricorg/databricks-testkit",
3
- "version": "0.6.2",
3
+ "version": "0.7.0",
4
4
  "description": "Testing toolkit for Databricks artifacts — DuckDB/local + live workspace execution contexts, fixtures, golden results, and cross-engine parity suites.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "sideEffects": false,
8
- "main": "./dist/index.cjs",
9
8
  "types": "./dist/index.d.ts",
10
9
  "module": "./dist/index.js",
11
10
  "exports": {
@@ -13,20 +12,12 @@
13
12
  "import": {
14
13
  "types": "./dist/index.d.ts",
15
14
  "default": "./dist/index.js"
16
- },
17
- "require": {
18
- "types": "./dist/index.d.cts",
19
- "default": "./dist/index.cjs"
20
15
  }
21
16
  },
22
17
  "./parity": {
23
18
  "import": {
24
19
  "types": "./dist/parity.d.ts",
25
20
  "default": "./dist/parity.js"
26
- },
27
- "require": {
28
- "types": "./dist/parity.d.cts",
29
- "default": "./dist/parity.cjs"
30
21
  }
31
22
  }
32
23
  },