@heycar/heycars-map 0.3.9 → 0.3.13
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/CHANGELOG.md +26 -0
- package/package.json +9 -7
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# @heycar/heycars-map
|
|
2
|
+
|
|
3
|
+
## 0.3.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
-
|
|
8
|
+
|
|
9
|
+
## 0.3.12
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
-
|
|
14
|
+
|
|
15
|
+
## 0.3.11
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- some thing
|
|
20
|
+
- fix something
|
|
21
|
+
|
|
22
|
+
## 0.3.10
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- v0.3.9
|
package/package.json
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heycar/heycars-map",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.13",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"dev": "vite -c vite.config.dev.ts",
|
|
7
|
-
"build": "rm -rf dist && vite build && tsc --declarationDir dist --emitDeclarationOnly --noEmit false --declaration",
|
|
8
|
-
"publish": "npm publish --access public --registry https://registry.npmjs.com"
|
|
9
|
-
},
|
|
10
5
|
"types": "./dist/index.d.ts",
|
|
11
6
|
"module": "./dist/index.js",
|
|
12
7
|
"main": "./dist/index.cjs",
|
|
@@ -86,8 +81,15 @@
|
|
|
86
81
|
"prettier --write"
|
|
87
82
|
]
|
|
88
83
|
},
|
|
84
|
+
"publishConfig": {
|
|
85
|
+
"registry": "https://registry.npmjs.com"
|
|
86
|
+
},
|
|
89
87
|
"packageManager": "pnpm@7.18.1",
|
|
90
88
|
"engines": {
|
|
91
89
|
"node": ">=16.0.0"
|
|
90
|
+
},
|
|
91
|
+
"scripts": {
|
|
92
|
+
"dev": "vite -c vite.config.dev.ts",
|
|
93
|
+
"build": "rm -rf dist && vite build && tsc --declarationDir dist --emitDeclarationOnly --noEmit false --declaration"
|
|
92
94
|
}
|
|
93
|
-
}
|
|
95
|
+
}
|