@voxie/contacts.js 0.1.6 → 0.2.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/README.md +8 -8
- package/dist/contacts.js +388 -408
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"type": "module",
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "vite build && npm run tailwind ",
|
|
19
|
-
"build:local": "
|
|
20
|
-
"build:production": "
|
|
19
|
+
"build:local": "VITE_CONNECT_URL=http://localhost:8000 vite build && npm run tailwind",
|
|
20
|
+
"build:production": "VITE_CONNECT_URL=https://connect.voxie.com vite build && npm run tailwind",
|
|
21
21
|
"clean": "rm -r dist",
|
|
22
22
|
"dev": "node mock_server.js",
|
|
23
23
|
"eslint": "eslint --ext .ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"test": "vitest --run",
|
|
26
26
|
"test:watch": "vitest",
|
|
27
27
|
"vite": "vite",
|
|
28
|
-
"vite:local": "
|
|
28
|
+
"vite:local": "VITE_CONNECT_URL=http://localhost:8000 vite"
|
|
29
29
|
},
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"engines": {
|
|
58
58
|
"node": "^16.18.1 || ^18.12.1"
|
|
59
59
|
},
|
|
60
|
-
"version": "0.
|
|
60
|
+
"version": "0.2.0"
|
|
61
61
|
}
|