ino-cesium 0.0.11 → 0.0.12

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.
Files changed (2) hide show
  1. package/README.MD +10 -1
  2. package/package.json +10 -9
package/README.MD CHANGED
@@ -11,7 +11,16 @@
11
11
 
12
12
  ## 安装
13
13
  ```shell
14
- npnm install cesium ino-cesium
14
+ pnpm install cesium ino-cesium
15
+
16
+ // vite
17
+ pnpm install vite-plugin-cesiumjs
18
+ import Cesiumjs from 'vite-plugin-cesiumjs'
19
+
20
+ plugins: [
21
+ Cesiumjs(),
22
+ ],
23
+
15
24
  ```
16
25
 
17
26
  ## 创建cesium
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "ino-cesium",
3
3
  "type": "module",
4
- "version": "0.0.11",
4
+ "version": "0.0.12",
5
5
  "author": "koino",
6
6
  "keywords": [
7
7
  "cesium",
8
8
  "ino-cesium"
9
9
  ],
10
10
  "exports": {
11
- ".": "./dist/index.js"
11
+ ".": "./dist/index.js",
12
+ "./ino-css": "./dist/ino-cesium.css"
12
13
  },
13
14
  "typesVersions": {
14
15
  "*": {
@@ -27,13 +28,13 @@
27
28
  "access": "public"
28
29
  },
29
30
  "dependencies": {
30
- "@ino-cesium/analysis": "0.0.11",
31
- "@ino-cesium/common": "0.0.11",
32
- "@ino-cesium/draw": "0.0.11",
33
- "@ino-cesium/effects": "0.0.11",
34
- "@ino-cesium/layers": "0.0.11",
35
- "@ino-cesium/material": "0.0.11",
36
- "@ino-cesium/primitive": "0.0.11"
31
+ "@ino-cesium/analysis": "0.0.12",
32
+ "@ino-cesium/common": "0.0.12",
33
+ "@ino-cesium/draw": "0.0.12",
34
+ "@ino-cesium/effects": "0.0.12",
35
+ "@ino-cesium/layers": "0.0.12",
36
+ "@ino-cesium/material": "0.0.12",
37
+ "@ino-cesium/primitive": "0.0.12"
37
38
  },
38
39
  "types": "./dist/index.d.ts",
39
40
  "scripts": {