@loaders.gl/excel 3.1.0 → 3.1.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/bundle.js +5 -34714
- package/dist/dist.min.js +34714 -0
- package/dist/es5/excel-loader.js +1 -1
- package/dist/esm/excel-loader.js +1 -1
- package/dist/excel-worker.js +1 -1
- package/package.json +6 -6
package/dist/es5/excel-loader.js
CHANGED
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports._typecheckLoader = exports.ExcelLoader = void 0;
|
|
7
|
-
var VERSION = typeof "3.1.
|
|
7
|
+
var VERSION = typeof "3.1.4" !== 'undefined' ? "3.1.4" : 'latest';
|
|
8
8
|
var DEFAULT_EXCEL_LOADER_OPTIONS = {
|
|
9
9
|
excel: {
|
|
10
10
|
shape: 'object-row-table',
|
package/dist/esm/excel-loader.js
CHANGED
package/dist/excel-worker.js
CHANGED
|
@@ -34768,7 +34768,7 @@
|
|
|
34768
34768
|
}
|
|
34769
34769
|
|
|
34770
34770
|
// src/excel-loader.ts
|
|
34771
|
-
var VERSION =
|
|
34771
|
+
var VERSION = true ? "3.1.4" : "latest";
|
|
34772
34772
|
var DEFAULT_EXCEL_LOADER_OPTIONS = {
|
|
34773
34773
|
excel: {
|
|
34774
34774
|
shape: "object-row-table",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/excel",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.4",
|
|
4
4
|
"description": "Framework-independent loader for Excel files",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
],
|
|
32
32
|
"scripts": {
|
|
33
33
|
"pre-build": "npm run build-bundle && npm run build-worker",
|
|
34
|
-
"build-bundle": "esbuild src/bundle.ts --bundle --outfile=dist/
|
|
35
|
-
"build-worker": "esbuild src/workers/excel-worker.ts --bundle --outfile=dist/excel-worker.js"
|
|
34
|
+
"build-bundle": "esbuild src/bundle.ts --bundle --outfile=dist/dist.min.js",
|
|
35
|
+
"build-worker": "esbuild src/workers/excel-worker.ts --bundle --outfile=dist/excel-worker.js --define:__VERSION__=\\\"$npm_package_version\\\""
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@loaders.gl/loader-utils": "3.1.
|
|
39
|
-
"@loaders.gl/schema": "3.1.
|
|
38
|
+
"@loaders.gl/loader-utils": "3.1.4",
|
|
39
|
+
"@loaders.gl/schema": "3.1.4",
|
|
40
40
|
"xlsx": "^0.17.0"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "4d27d3ac6023e53b562dcad83b9254b198e81ee5"
|
|
43
43
|
}
|