earthsdk3 3.0.2 → 3.0.3-beta.2
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/earthsdk3.cjs +1 -1
- package/dist/earthsdk3.js +1 -1
- package/dist/earthsdk3.mjs +1 -1
- package/dist/types/xbsj-base/index.d.ts +1 -1
- package/package.json +7 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from '
|
|
1
|
+
export * from 'xbsj-base';
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "earthsdk3",
|
|
3
|
-
"version": "3.0.2",
|
|
3
|
+
"version": "3.0.3-beta.2",
|
|
4
|
+
"next-version": "3.0.4",
|
|
4
5
|
"description": "地球可视化实验室 (EarthSDK&CesiumLab) https://www.bjxbsj.cn",
|
|
5
6
|
"1main": "./src/index.ts",
|
|
6
7
|
"main": "dist/earthsdk3.cjs",
|
|
@@ -18,8 +19,9 @@
|
|
|
18
19
|
"earthsdk3-cesium"
|
|
19
20
|
],
|
|
20
21
|
"scripts": {
|
|
21
|
-
"build:dev": "rimraf dist && webpack --config ./tools/webpack-scripts/webpack.dev.js && tsc-alias",
|
|
22
|
-
"build:prod": "rimraf dist && webpack --config ./tools/webpack-scripts/webpack.prod.js && tsc-alias",
|
|
22
|
+
"build:dev": "rimraf dist && webpack --config ./tools/webpack-scripts/webpack.dev.js && tsc-alias && node tools/fix-ds.js",
|
|
23
|
+
"build:prod": "rimraf dist && webpack --config ./tools/webpack-scripts/webpack.prod.js && tsc-alias && node tools/fix-ds.js",
|
|
24
|
+
"fix": "node tools/fix-ds.js",
|
|
23
25
|
"login": "npm login --registry https://registry.npmjs.org",
|
|
24
26
|
"push:beta": "npm publish --registry https://registry.npmjs.org --tag beta",
|
|
25
27
|
"push": "npm publish --registry https://registry.npmjs.org"
|
|
@@ -40,6 +42,7 @@
|
|
|
40
42
|
},
|
|
41
43
|
"dependencies": {
|
|
42
44
|
"@turf/turf": "^6.5.0",
|
|
43
|
-
"proj4": "^2.8.0"
|
|
45
|
+
"proj4": "^2.8.0",
|
|
46
|
+
"xbsj-base": "1.0.1"
|
|
44
47
|
}
|
|
45
48
|
}
|