@tencent-map/lbs-skills 0.0.2 → 0.0.3

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/bin/cli.js +2 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -2,6 +2,7 @@
2
2
  'use strict';
3
3
 
4
4
  const lib = require('../lib/index.js');
5
+ const { version } = require('../package.json');
5
6
 
6
7
  // ─── 工具函数 ────────────────────────────────────────────────────────
7
8
 
@@ -45,7 +46,7 @@ function parseArgs(argv) {
45
46
  // ─── 帮助信息 ────────────────────────────────────────────────────────
46
47
 
47
48
  const HELP = `
48
- tmap-lbs — 腾讯地图位置服务 CLI
49
+ tmap-lbs v${version} — 腾讯地图位置服务 CLI
49
50
 
50
51
  Usage:
51
52
  tmap-lbs <command> [options]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tencent-map/lbs-skills",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "腾讯地图位置服务命令行工具,支持 POI 搜索、地理编码、周边搜索、路径规划、旅游规划、轨迹可视化等功能",
5
5
  "bin": {
6
6
  "tmap-lbs": "./bin/cli.js"