@gengage/assistant-fe 0.4.2 → 0.4.3
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/dist/{chat-Ci4ZA37X.js → chat-sb3DK_dL.js} +14 -12
- package/dist/chat.iife.js +2 -2
- package/dist/chat.js +1 -1
- package/dist/{common-DUMmqYxM.js → common-DDQyFEcK.js} +1 -1
- package/dist/common.js +3 -3
- package/dist/index.js +3 -3
- package/dist/{native-webview-v2HYw_9X.js → native-webview-CwQr4fXv.js} +1 -1
- package/dist/native.iife.js +2 -2
- package/dist/native.js +1 -1
- package/package.json +9 -5
package/dist/native.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gengage/assistant-fe",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "Source-available frontend widgets for Gengage AI Assistant — chat, Q&A, and similar-products. Backend is SaaS (gengage.ai).",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"type": "module",
|
|
@@ -111,13 +111,17 @@
|
|
|
111
111
|
"lint": "eslint src",
|
|
112
112
|
"lint:fix": "eslint src --fix",
|
|
113
113
|
"format": "prettier --write \"src/**/*.{ts,tsx,css}\" \"catalog/**/*.{ts,tsx,css,js,html}\" \"demos/**/*.{ts,tsx,css,js,html}\" \"tests/**/*.ts\" \"scripts/**/*.ts\" && eslint src --fix && npm run typecheck && npm run typecheck:catalog",
|
|
114
|
-
"test": "
|
|
114
|
+
"test": "npm run test:unit && npm run test:e2e",
|
|
115
|
+
"test:unit": "vitest run",
|
|
115
116
|
"test:demo-shell": "vitest run tests/demo-shell.test.ts",
|
|
116
117
|
"test:ai-top-picks": "vitest run tests/ai-top-picks.test.ts",
|
|
117
118
|
"test:choice-prompter": "vitest run tests/choice-prompter.test.ts",
|
|
118
|
-
"test:e2e": "env -u FORCE_COLOR -u NO_COLOR playwright test
|
|
119
|
-
"test:all": "npm
|
|
120
|
-
"test:e2e:
|
|
119
|
+
"test:e2e": "env -u FORCE_COLOR -u NO_COLOR playwright test",
|
|
120
|
+
"test:all": "npm test",
|
|
121
|
+
"test:e2e:chromium": "env -u FORCE_COLOR -u NO_COLOR playwright test --project=chromium",
|
|
122
|
+
"test:e2e:mobile": "env -u FORCE_COLOR -u NO_COLOR playwright test --project=mobile",
|
|
123
|
+
"test:e2e:catalog": "env -u FORCE_COLOR -u NO_COLOR playwright test --project=catalog",
|
|
124
|
+
"test:e2e:fullstack": "env -u FORCE_COLOR -u NO_COLOR playwright test --project=full-stack",
|
|
121
125
|
"docs:dev": "vitepress dev docs",
|
|
122
126
|
"docs:build": "vitepress build docs",
|
|
123
127
|
"catalog": "npm run build && vite --config catalog/vite.config.ts",
|