@cognigy/webchat 3.30.1 → 3.32.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/OSS_LICENSES.txt +2 -2
- package/dist/webchat.esm.js +398 -46
- package/dist/webchat.js +27 -27
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cognigy/webchat",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.32.0",
|
|
4
4
|
"description": "Webchat for Cognigy.AI",
|
|
5
5
|
"author": "Cognigy GmbH <info@cognigy.com>",
|
|
6
6
|
"contributors": [
|
|
@@ -28,14 +28,16 @@
|
|
|
28
28
|
"build:esm": "webpack --config webpack.es.js",
|
|
29
29
|
"update-license": "node update-license.js",
|
|
30
30
|
"dev": "webpack-dev-server --config webpack.dev.js --host 0.0.0.0",
|
|
31
|
-
"cypress:open": "cypress open --e2e --browser chrome",
|
|
31
|
+
"cypress:open:chrome": "cypress open --e2e --browser chrome",
|
|
32
32
|
"cypress:open:firefox": "cypress open --e2e --browser firefox",
|
|
33
33
|
"cypress:serve": "http-server -a localhost -p 8787 dist/ --silent",
|
|
34
|
-
"cypress:run": "cypress run --browser chrome --quiet",
|
|
34
|
+
"cypress:run:chrome": "cypress run --browser chrome --quiet",
|
|
35
|
+
"cypress:run:progressive-rendering": "cypress run --browser chrome --quiet --env useProgressiveRendering=true",
|
|
35
36
|
"cypress:run:firefox": "cypress run --browser firefox --quiet",
|
|
36
|
-
"test:cypress": "run-p -r cypress:serve cypress:run",
|
|
37
|
+
"test:cypress:chrome": "run-p -r cypress:serve cypress:run:chrome",
|
|
37
38
|
"test:cypress:firefox": "run-p -r cypress:serve cypress:run:firefox",
|
|
38
|
-
"test": "
|
|
39
|
+
"test:cypress:progressive-rendering": "run-p -r cypress:serve cypress:run:progressive-rendering",
|
|
40
|
+
"test": "npm run test:cypress:chrome",
|
|
39
41
|
"prepack": "npm run build && npm run update-license",
|
|
40
42
|
"pretest": "npm run build",
|
|
41
43
|
"prettier:check": "prettier --check .",
|