@saptools/cf-hana 0.3.4 → 0.4.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/CHANGELOG.md +20 -0
- package/README.md +97 -17
- package/dist/cli.js +3937 -3130
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +23 -8
- package/dist/index.js +984 -318
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saptools/cf-hana",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Run SQL against SAP HANA Cloud databases bound to a Cloud Foundry app by region/org/space/app selector",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"lint": "eslint src tests --ignore-pattern tests/e2e/fixtures/fake-cf.mjs",
|
|
65
65
|
"test:unit": "vitest run --coverage",
|
|
66
66
|
"test:e2e": "playwright test",
|
|
67
|
-
"test:e2e:fake": "playwright test tests/e2e/cli.e2e.ts",
|
|
67
|
+
"test:e2e:fake": "playwright test tests/e2e/cli.e2e.ts tests/e2e/001-hardening.e2e.ts",
|
|
68
68
|
"test:e2e:live": "playwright test tests/e2e/live.e2e.ts"
|
|
69
69
|
}
|
|
70
70
|
}
|