@loaders.gl/tile-converter 3.3.0 → 3.4.0-alpha.1
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/3d-tiles-attributes-worker.js +2 -2
- package/dist/3d-tiles-attributes-worker.js.map +3 -3
- package/dist/converter.min.js +22 -22
- package/dist/dist.min.js +153 -151
- package/dist/es5/3d-tiles-attributes-worker.js +1 -1
- package/dist/es5/3d-tiles-attributes-worker.js.map +1 -1
- package/dist/es5/deps-installer/deps-installer.js +1 -1
- package/dist/es5/deps-installer/deps-installer.js.map +1 -1
- package/dist/es5/i3s-attributes-worker.js +1 -1
- package/dist/es5/i3s-attributes-worker.js.map +1 -1
- package/dist/es5/pgm-loader.js +1 -1
- package/dist/es5/pgm-loader.js.map +1 -1
- package/dist/esm/3d-tiles-attributes-worker.js +1 -1
- package/dist/esm/3d-tiles-attributes-worker.js.map +1 -1
- package/dist/esm/deps-installer/deps-installer.js +1 -1
- package/dist/esm/deps-installer/deps-installer.js.map +1 -1
- package/dist/esm/i3s-attributes-worker.js +1 -1
- package/dist/esm/i3s-attributes-worker.js.map +1 -1
- package/dist/esm/pgm-loader.js +1 -1
- package/dist/esm/pgm-loader.js.map +1 -1
- package/dist/i3s-attributes-worker.js +2 -2
- package/dist/i3s-attributes-worker.js.map +2 -2
- package/dist/i3s-converter/helpers/node-pages.js +1 -1
- package/package.json +16 -17
|
@@ -11,7 +11,7 @@ const file_utils_1 = require("../../lib/utils/file-utils");
|
|
|
11
11
|
* class NodePages - wrapper of nodePages array
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
|
-
* import {writeFile} from './helpers/write-file
|
|
14
|
+
* import {writeFile} from './helpers/write-file';
|
|
15
15
|
*
|
|
16
16
|
* // create an instance of the class
|
|
17
17
|
* const nodePages = new NodePages(writeFile, HARDCODED_NODES_PER_PAGE);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/tile-converter",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0-alpha.1",
|
|
4
4
|
"description": "Converter",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -33,8 +33,7 @@
|
|
|
33
33
|
"fs": false,
|
|
34
34
|
"path": false,
|
|
35
35
|
"process": false,
|
|
36
|
-
"archiver": false
|
|
37
|
-
"join-images": false
|
|
36
|
+
"archiver": false
|
|
38
37
|
},
|
|
39
38
|
"scripts": {
|
|
40
39
|
"pre-build": "npm run build-bundle && npm run build-converter-bundle && npm run build-i3s-attributes-worker && npm run build-3d-tiles-attributes-worker",
|
|
@@ -44,19 +43,19 @@
|
|
|
44
43
|
"build-3d-tiles-attributes-worker": "esbuild src/workers/3d-tiles-attributes-worker.ts --outfile=dist/3d-tiles-attributes-worker.js --platform=node --target=esnext,node12 --external:join-images --minify --bundle --sourcemap --define:__VERSION__=\\\"$npm_package_version\\\""
|
|
45
44
|
},
|
|
46
45
|
"dependencies": {
|
|
47
|
-
"@loaders.gl/3d-tiles": "3.
|
|
48
|
-
"@loaders.gl/crypto": "3.
|
|
49
|
-
"@loaders.gl/draco": "3.
|
|
50
|
-
"@loaders.gl/gltf": "3.
|
|
51
|
-
"@loaders.gl/i3s": "3.
|
|
52
|
-
"@loaders.gl/images": "3.
|
|
53
|
-
"@loaders.gl/loader-utils": "3.
|
|
54
|
-
"@loaders.gl/polyfills": "3.
|
|
55
|
-
"@loaders.gl/schema": "3.
|
|
56
|
-
"@loaders.gl/textures": "3.
|
|
57
|
-
"@loaders.gl/tiles": "3.
|
|
58
|
-
"@loaders.gl/worker-utils": "3.
|
|
59
|
-
"@loaders.gl/zip": "3.
|
|
46
|
+
"@loaders.gl/3d-tiles": "3.4.0-alpha.1",
|
|
47
|
+
"@loaders.gl/crypto": "3.4.0-alpha.1",
|
|
48
|
+
"@loaders.gl/draco": "3.4.0-alpha.1",
|
|
49
|
+
"@loaders.gl/gltf": "3.4.0-alpha.1",
|
|
50
|
+
"@loaders.gl/i3s": "3.4.0-alpha.1",
|
|
51
|
+
"@loaders.gl/images": "3.4.0-alpha.1",
|
|
52
|
+
"@loaders.gl/loader-utils": "3.4.0-alpha.1",
|
|
53
|
+
"@loaders.gl/polyfills": "3.4.0-alpha.1",
|
|
54
|
+
"@loaders.gl/schema": "3.4.0-alpha.1",
|
|
55
|
+
"@loaders.gl/textures": "3.4.0-alpha.1",
|
|
56
|
+
"@loaders.gl/tiles": "3.4.0-alpha.1",
|
|
57
|
+
"@loaders.gl/worker-utils": "3.4.0-alpha.1",
|
|
58
|
+
"@loaders.gl/zip": "3.4.0-alpha.1",
|
|
60
59
|
"@luma.gl/engine": "^8.5.4",
|
|
61
60
|
"@math.gl/core": "^3.5.1",
|
|
62
61
|
"@math.gl/culling": "^3.5.1",
|
|
@@ -80,5 +79,5 @@
|
|
|
80
79
|
"join-images": "^1.1.3",
|
|
81
80
|
"sharp": "^0.31.3"
|
|
82
81
|
},
|
|
83
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "4085b0323050e4361614471319a1fb4729547bbf"
|
|
84
83
|
}
|