@heycar/heycars-map 0.4.2 → 0.4.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/package.json CHANGED
@@ -1,7 +1,12 @@
1
1
  {
2
2
  "name": "@heycar/heycars-map",
3
- "version": "0.4.2",
3
+ "version": "0.4.4",
4
4
  "type": "module",
5
+ "scripts": {
6
+ "dev": "vite -c vite.config.dev.ts",
7
+ "dev:lib": "concurrently \"vite build -c vite.config.dev.lib.ts --watch --emptyOutDir false\" \"tsc --declarationDir dist --emitDeclarationOnly --noEmit false --declaration --watch\"",
8
+ "build": "rm -rf dist && vite build && tsc --declarationDir dist --emitDeclarationOnly --noEmit false --declaration"
9
+ },
5
10
  "types": "./dist/index.d.ts",
6
11
  "module": "./dist/index.js",
7
12
  "main": "./dist/index.cjs",
@@ -87,10 +92,5 @@
87
92
  "packageManager": "pnpm@7.18.1",
88
93
  "engines": {
89
94
  "node": ">=16.0.0"
90
- },
91
- "scripts": {
92
- "dev": "vite -c vite.config.dev.ts",
93
- "dev:lib": "concurrently \"vite build --watch --emptyOutDir false\" \"tsc --declarationDir dist --emitDeclarationOnly --noEmit false --declaration --watch\"",
94
- "build": "rm -rf dist && vite build && tsc --declarationDir dist --emitDeclarationOnly --noEmit false --declaration"
95
95
  }
96
- }
96
+ }
package/todo.md CHANGED
@@ -24,20 +24,23 @@ https://dawchihliou.github.io/articles/building-custom-google-maps-marker-react-
24
24
  2. 用户手动输入地址,然后跳回 home 页面, centerplace 的 name 不正确
25
25
  3. 用户地址搜索,先设置台湾,搜个结果,然后切换城市到新加坡,搜索到结果依然是台湾
26
26
 
27
- 谭红娅
27
+ ---
28
+
29
+ passenger
30
+
31
+ 1. 2 公里以内 fitview 才考虑 passenger, 不然不作为显示的考虑因素
32
+
33
+ setView 类 bug
28
34
 
29
- - 4789
35
+ - 5134
36
+ - 5056
37
+ - 4939
38
+ - 4936
30
39
 
31
- v0.3.8
40
+ 0.4.3
32
41
 
33
- - 4845
34
- - 4898
35
- - 4840
36
- - 4827
37
- - 4808
42
+ - 5105
38
43
 
39
- v0.3.9
44
+ 0.4.4
40
45
 
41
- - 4809
42
- - 4604
43
- - 4789
46
+ - 5057
@@ -0,0 +1,10 @@
1
+ import { UserConfig, defineConfig } from "vite";
2
+ import buildConfig from "./vite.config";
3
+
4
+ export default defineConfig({
5
+ ...buildConfig,
6
+ build: {
7
+ ...(buildConfig as UserConfig).build,
8
+ minify: false,
9
+ },
10
+ });