bimplus-renderer 1.6.2 → 1.6.4-overlays
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/bin/processPartitionVertices.js +15 -15
- package/dist/bimplus-renderer.js +1 -1
- package/dist/web-ifc-mt.wasm +0 -0
- package/dist/web-ifc.wasm +0 -0
- package/package.json +11 -3
package/dist/web-ifc-mt.wasm
CHANGED
|
Binary file
|
package/dist/web-ifc.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bimplus-renderer",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.4-overlays",
|
|
4
4
|
"description": "bim+ renderer",
|
|
5
5
|
"main": "dist/bimplus-renderer.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -47,7 +47,15 @@
|
|
|
47
47
|
"code-metrics": "plato -r -d metrics src",
|
|
48
48
|
"copy-compiled-worker": "cpx ./dist/GlbProcessorWorker.bimplus-renderer.worker.js ./src/compiledWorkers",
|
|
49
49
|
"cleanup-compiled-worker": "rimraf ./src/compiledWorkers/GlbProcessorWorker.bimplus-renderer.worker.js",
|
|
50
|
-
"copy-wasm": "cpx ./src/wasm/*.wasm ./dist/"
|
|
50
|
+
"copy-wasm": "cpx ./src/wasm/*.wasm ./dist/",
|
|
51
|
+
"eslint-lls": "eslint 'src/**/*.js' 'test/**'",
|
|
52
|
+
"build-lls": "npm run build-worker-dev && npm run eslint-lls && webpack --config webpack.dev.js && npm run copy-wasm-lls",
|
|
53
|
+
"build-prod-lls": "npm run build-worker-prod && npm run eslint-lls && webpack --config webpack.prod.js && npm run copy-wasm-lls",
|
|
54
|
+
"yarn-publish-lls": "npm run build-prod-lls && yarn publish",
|
|
55
|
+
"yarn-publish-rc-lls": "npm run build-prod-lls && yarn publish --tag rc",
|
|
56
|
+
"yarn-publish-branch-lls": "npm run build-prod-lls && yarn publish --tag",
|
|
57
|
+
"npm-pack-lls": "npm run build-prod-lls && npm pack",
|
|
58
|
+
"copy-wasm-lls": "cpx './src/wasm/*.wasm' ./dist/"
|
|
51
59
|
},
|
|
52
60
|
"devDependencies": {
|
|
53
61
|
"@babel/core": "^7.22.5",
|
|
@@ -99,6 +107,6 @@
|
|
|
99
107
|
"numeric": "^1.2.6",
|
|
100
108
|
"threads": "1.7.0",
|
|
101
109
|
"three": "0.128.0",
|
|
102
|
-
"web-ifc": "0.0.
|
|
110
|
+
"web-ifc": "0.0.44"
|
|
103
111
|
}
|
|
104
112
|
}
|