@epigraph/configurator 2.0.3 → 2.0.4
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/index.js +268 -5139
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epigraph/configurator",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Epigraph Configurator web component.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@epigraph/epigraph-std-lib": "^
|
|
8
|
+
"@epigraph/epigraph-std-lib": "^4.1.0",
|
|
9
9
|
"@gltf-transform/core": "3.7.3",
|
|
10
10
|
"@gltf-transform/functions": "3.7.3",
|
|
11
11
|
"@google/model-viewer": "^3.5.0",
|
|
@@ -37,10 +37,12 @@
|
|
|
37
37
|
"react-tabs": "6.0.2",
|
|
38
38
|
"three": "0.163.0",
|
|
39
39
|
"three-stdlib": "^2.27.2",
|
|
40
|
+
"uuid": "^11.1.0",
|
|
40
41
|
"vite": "4.4.11",
|
|
41
42
|
"zustand": "4.4.3"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
45
|
+
"cross-env": "^7.0.3",
|
|
44
46
|
"husky": "^8.0.0",
|
|
45
47
|
"jsdoc-to-markdown": "^7.1.1",
|
|
46
48
|
"prettier": "^2.7.1",
|
|
@@ -60,8 +62,8 @@
|
|
|
60
62
|
"setup": "npm install && npm run download-all-assets",
|
|
61
63
|
"organise:dist": "node npm-scripts/organiseDist.js",
|
|
62
64
|
"dev": "vite",
|
|
63
|
-
"build:prod": "
|
|
64
|
-
"build:staging": "
|
|
65
|
+
"build:prod": "cross-env NODE_ENV=production && vite build --mode production && npm run organise:dist",
|
|
66
|
+
"build:staging": "cross-env NODE_ENV=staging && vite build --mode staging",
|
|
65
67
|
"build:cloudflare": "vite build --mode staging",
|
|
66
68
|
"--------------------------------": "====================================",
|
|
67
69
|
"create-public-dir": "node npm-scripts/createPubDir.js"
|