@connekz/connekz-agent 1.3.6 → 1.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 +15 -0
- package/dist/connekz-agent.css +1 -1
- package/dist/connekz-agent.es.js +2614 -2519
- package/dist/connekz-agent.umd.js +11 -11
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@connekz/connekz-agent",
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.4.0",
|
|
6
6
|
"description": "A package for Connekz clients to integrate Connekz Agent into their applications.",
|
|
7
7
|
"main": "./dist/connekz-agent.umd.js",
|
|
8
8
|
"module": "./dist/connekz-agent.es.js",
|
|
@@ -39,6 +39,8 @@
|
|
|
39
39
|
"test": "vitest run",
|
|
40
40
|
"test:watch": "vitest",
|
|
41
41
|
"test:coverage": "vitest run --coverage",
|
|
42
|
+
"test:e2e": "playwright test --config e2e/playwright.config.ts",
|
|
43
|
+
"test:e2e:ui": "playwright test --config e2e/playwright.config.ts --ui",
|
|
42
44
|
"clean": "rm -rf dist",
|
|
43
45
|
"publish": "node --experimental-modules commands/publish.mjs"
|
|
44
46
|
},
|