@memori.ai/memori-webcomponent 8.0.0 → 8.1.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 +20 -0
- package/dist/index.75e130c2.js +97080 -0
- package/dist/index.75e130c2.js.map +1 -0
- package/dist/index.html +33 -0
- package/dist/memori-webcomponent.js +16 -16
- package/package.json +4 -2
- package/src/index.tsx +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memori.ai/memori-webcomponent",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.1.0",
|
|
4
4
|
"description": "WebComponent to integrate a Memori in your app or website",
|
|
5
5
|
"author": "Memori Srl",
|
|
6
6
|
"source": "src/index.tsx",
|
|
@@ -32,6 +32,8 @@
|
|
|
32
32
|
},
|
|
33
33
|
"packageManager": "yarn@3.2.3",
|
|
34
34
|
"scripts": {
|
|
35
|
+
"start": "parcel serve example/index.html --dist-dir dist",
|
|
36
|
+
"dev": "parcel serve example/index.html --dist-dir dist",
|
|
35
37
|
"prebuild": "yarn clean",
|
|
36
38
|
"build": "parcel build --no-content-hash --no-source-maps --dist-dir dist && mv dist/index.js dist/memori-webcomponent.js",
|
|
37
39
|
"clean": "rimraf dist",
|
|
@@ -219,7 +221,7 @@
|
|
|
219
221
|
"util": "^0.12.3"
|
|
220
222
|
},
|
|
221
223
|
"dependencies": {
|
|
222
|
-
"@memori.ai/memori-react": "^8.
|
|
224
|
+
"@memori.ai/memori-react": "^8.6.7",
|
|
223
225
|
"react": "17.0.2",
|
|
224
226
|
"react-dom": "17.0.2"
|
|
225
227
|
}
|