@camunda/play 1.4.0-rc.3 → 1.4.0-rc.4
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/build/index.js +19509 -19313
- package/package.json +6 -1
package/package.json
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda/play",
|
|
3
|
-
"version": "1.4.0-rc.
|
|
3
|
+
"version": "1.4.0-rc.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "vite",
|
|
7
7
|
"build": "tsc && vite build",
|
|
8
8
|
"build:dev": "tsc && vite build --mode development",
|
|
9
9
|
"build:watch": "tsc-watch --onSuccess \"yarn publish-local\"",
|
|
10
|
+
"build:e2e": "yarn build --mode e2e",
|
|
11
|
+
"playwright": "playwright test",
|
|
12
|
+
"test:e2e": "yarn playwright e2e/tests",
|
|
13
|
+
"test:e2e:ci": "IS_E2E=true yarn playwright e2e/tests",
|
|
10
14
|
"eslint": "eslint .",
|
|
11
15
|
"lint": "yarn tsc && yarn eslint",
|
|
12
16
|
"analyze-bundle": "yarn build && source-map-explorer build/* --no-border-checks",
|
|
@@ -42,6 +46,7 @@
|
|
|
42
46
|
"@camunda/improved-canvas": "1.3.1",
|
|
43
47
|
"@carbon/react": "1.53.0",
|
|
44
48
|
"@monaco-editor/react": "4.6.0",
|
|
49
|
+
"@playwright/test": "1.42.1",
|
|
45
50
|
"@testing-library/jest-dom": "6.4.2",
|
|
46
51
|
"@testing-library/react": "14.2.2",
|
|
47
52
|
"@testing-library/react-hooks": "8.0.1",
|