@loaders.gl/crypto 3.1.0-alpha.4 → 3.1.0-alpha.5
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/bundle.d.ts +1 -0
- package/dist/dist.min.js +1 -1
- package/dist/es5/bundle.js +1 -1
- package/dist/es5/bundle.js.map +1 -1
- package/dist/es5/index.js +11 -11
- package/dist/es5/index.js.map +1 -1
- package/dist/es5/lib/algorithms/crc32.js +18 -29
- package/dist/es5/lib/algorithms/crc32.js.map +1 -1
- package/dist/es5/lib/algorithms/crc32c.js +18 -30
- package/dist/es5/lib/algorithms/crc32c.js.map +1 -1
- package/dist/es5/lib/algorithms/md5-wasm.js +25 -36
- package/dist/es5/lib/algorithms/md5-wasm.js.map +1 -1
- package/dist/es5/lib/crc32-hash.js +39 -185
- package/dist/es5/lib/crc32-hash.js.map +1 -1
- package/dist/es5/lib/crc32c-hash.js +38 -184
- package/dist/es5/lib/crc32c-hash.js.map +1 -1
- package/dist/es5/lib/crypto-hash.js +49 -225
- package/dist/es5/lib/crypto-hash.js.map +1 -1
- package/dist/es5/lib/hash.js +21 -175
- package/dist/es5/lib/hash.js.map +1 -1
- package/dist/es5/lib/md5-hash.js +13 -71
- package/dist/es5/lib/md5-hash.js.map +1 -1
- package/dist/es5/lib/node-hash.js +33 -181
- package/dist/es5/lib/node-hash.js.map +1 -1
- package/dist/es5/lib/sha256-hash.js +7 -33
- package/dist/es5/lib/sha256-hash.js.map +1 -1
- package/dist/es5/lib/utils/base64-utils.js +13 -13
- package/dist/es5/lib/utils/base64-utils.js.map +1 -1
- package/dist/es5/lib/utils/digest-utils.js +2 -4
- package/dist/es5/lib/utils/digest-utils.js.map +1 -1
- package/dist/es5/workers/worker.js +17 -55
- package/dist/es5/workers/worker.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib/utils/base64-utils.js +1 -1
- package/dist/esm/lib/utils/base64-utils.js.map +1 -1
- package/dist/esm/lib/utils/digest-utils.js +2 -2
- package/dist/esm/lib/utils/digest-utils.js.map +1 -1
- package/dist/esm/workers/worker.js +1 -1
- package/dist/esm/workers/worker.js.map +1 -1
- package/dist/index.d.ts +32 -0
- package/dist/lib/algorithms/crc32.d.ts +8 -0
- package/dist/lib/algorithms/crc32c.d.ts +10 -0
- package/dist/lib/algorithms/md5-wasm.d.ts +4 -0
- package/dist/lib/crc32-hash.d.ts +17 -0
- package/dist/lib/crc32c-hash.d.ts +21 -0
- package/dist/lib/crypto-hash.d.ts +31 -0
- package/dist/lib/hash.d.ts +21 -0
- package/dist/lib/md5-hash.d.ts +14 -0
- package/dist/lib/node-hash.d.ts +27 -0
- package/dist/lib/sha256-hash.d.ts +18 -0
- package/dist/lib/utils/base64-utils.d.ts +5 -0
- package/dist/lib/utils/digest-utils.d.ts +8 -0
- package/dist/types.d.ts +9 -0
- package/dist/worker.js +22 -22
- package/dist/worker.js.map +1 -1
- package/dist/workers/worker.d.ts +3 -0
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/crypto",
|
|
3
|
-
"version": "3.1.0-alpha.
|
|
3
|
+
"version": "3.1.0-alpha.5",
|
|
4
4
|
"description": "Cryptographic/hashing plugins for loaders.gl",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"mesh",
|
|
18
18
|
"point cloud"
|
|
19
19
|
],
|
|
20
|
-
"types": "
|
|
20
|
+
"types": "dist/index.d.ts",
|
|
21
21
|
"main": "dist/es5/index.js",
|
|
22
22
|
"module": "dist/esm/index.js",
|
|
23
23
|
"sideEffects": false,
|
|
@@ -28,13 +28,14 @@
|
|
|
28
28
|
],
|
|
29
29
|
"scripts": {
|
|
30
30
|
"pre-build": "npm run build-worker && npm run build-bundle",
|
|
31
|
+
"post-build": "tsc",
|
|
31
32
|
"build-bundle": "webpack --display=minimal --config ../../scripts/webpack/bundle.js",
|
|
32
33
|
"build-worker": "webpack --entry ./src/workers/worker.ts --output ./dist/worker.js --env.dev --config ../../scripts/webpack/worker.js"
|
|
33
34
|
},
|
|
34
35
|
"dependencies": {
|
|
35
36
|
"@babel/runtime": "^7.3.1",
|
|
36
|
-
"@loaders.gl/loader-utils": "3.1.0-alpha.
|
|
37
|
-
"@loaders.gl/worker-utils": "3.1.0-alpha.
|
|
37
|
+
"@loaders.gl/loader-utils": "3.1.0-alpha.5",
|
|
38
|
+
"@loaders.gl/worker-utils": "3.1.0-alpha.5",
|
|
38
39
|
"@types/crypto-js": "^4.0.1"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
@@ -44,5 +45,5 @@
|
|
|
44
45
|
"crypto": false,
|
|
45
46
|
"sse4_crc32": false
|
|
46
47
|
},
|
|
47
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "352241dd910a8c6307a235dadbe154ca915b885b"
|
|
48
49
|
}
|