@mypatientspace/chatbot-widget 1.0.34 → 1.0.36
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/README.md +51 -2
- package/dist/mypatientspace-demo.es.js +14826 -0
- package/dist/mypatientspace-demo.umd.js +991 -0
- package/package.json +4 -2
- package/dist/mypatientspace-widget.es.js +0 -13170
- package/dist/mypatientspace-widget.umd.js +0 -470
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mypatientspace/chatbot-widget",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.36",
|
|
4
4
|
"description": "Embeddable healthcare chatbot widget for websites and mobile apps",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/mypatientspace-widget.umd.js",
|
|
@@ -11,7 +11,9 @@
|
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
13
|
"dev": "vite",
|
|
14
|
-
"build": "tsc -b &&
|
|
14
|
+
"build": "tsc -b && npm run build:widget && npm run build:demo",
|
|
15
|
+
"build:widget": "vite build",
|
|
16
|
+
"build:demo": "BUILD_TARGET=demo vite build",
|
|
15
17
|
"lint": "eslint .",
|
|
16
18
|
"preview": "vite preview",
|
|
17
19
|
"prepublishOnly": "npm run build"
|