augustine-jkmap 1.1.0 → 1.1.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/README.md ADDED
@@ -0,0 +1,57 @@
1
+ # augustine_xumap
2
+
3
+ A Vue 2 & 3 compatible component library.
4
+
5
+ ## 发布代码
6
+
7
+ ls lib/ # 看是否有 JS 文件
8
+ npm pack --dry-run # 看是否包含 lib/ 内容
9
+
10
+ # 删除命令(谨慎使用)
11
+
12
+ npm unpublish augustine_xumap@0.0.1
13
+
14
+ ## 'npm publish --//registry.npmjs.org/:\_authToken=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'
15
+
16
+ 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
17
+
18
+ npm version patch # 0.0.1 → 0.0.2
19
+ npm version minor # 0.0.1 → 0.1.0
20
+ npm version major # 0.0.1 → 1.0.0
21
+
22
+ # 1. 升级版本(比如升补丁版)
23
+
24
+ npm version patch
25
+
26
+ # 输出:v0.0.2
27
+
28
+ # 2. 构建(确保 lib/ 是最新的)
29
+
30
+ npm run build
31
+
32
+ # 3. 发布新版本
33
+
34
+ npm publish
35
+
36
+ ## Install
37
+
38
+ ```bash
39
+ npm install augustine_xumap
40
+ ```
41
+
42
+ ## Usage
43
+
44
+ ### Vue 3 (Vite)
45
+
46
+ import "augustine_xumap/lib/style.css";
47
+ import \* as augustineXuMap from "augustine_xumap";
48
+ const { mapList } = augustineXuMap;
49
+ import { mapJump } from "augustine_xumap/utils/toArcGISPoint";
50
+
51
+ ## Supports
52
+
53
+ - ✅ Vue 2.6+ and Vue 3
54
+ - ✅ Vite & Webpack
55
+ - ✅ Source Map debugging
56
+ - ✅ Tree-shaking
57
+ - ✅ Auto-import via `unplugin-vue-components`