@fabricorg/databricks-bdd 0.7.2 → 0.8.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.
- package/README.md +4 -0
- package/package.json +2 -7
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @fabricorg/databricks-bdd
|
|
2
2
|
|
|
3
|
+
This package's root entry is ESM-only. Use `import` from TypeScript or
|
|
4
|
+
JavaScript on Node 22 or newer; CommonJS `require()` is not an exported runtime
|
|
5
|
+
surface. Pure utility subpaths may retain CommonJS exports for compatibility.
|
|
6
|
+
|
|
3
7
|
Gherkin (cucumber-js) step library for testing Databricks artifacts
|
|
4
8
|
(ADR-0006). The same `.feature` file runs hermetically on DuckDB under
|
|
5
9
|
`DBX_TEST_PROFILE=local` and against a real SQL warehouse under
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fabricorg/databricks-bdd",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Gherkin (cucumber-js) step library for testing Databricks artifacts — one .feature file runs on DuckDB locally and on a live workspace.",
|
|
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,10 +12,6 @@
|
|
|
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
|
"./steps": {
|
|
@@ -86,7 +81,7 @@
|
|
|
86
81
|
"dependencies": {
|
|
87
82
|
"@cucumber/cucumber": "^13.0.0",
|
|
88
83
|
"@fabric-harness/databricks": "^1.6.0",
|
|
89
|
-
"@fabricorg/databricks-testkit": "^0.
|
|
84
|
+
"@fabricorg/databricks-testkit": "^0.7.0"
|
|
90
85
|
},
|
|
91
86
|
"peerDependencies": {
|
|
92
87
|
"@duckdb/node-api": ">=1.4.0"
|