Skip to content

Commit aa488e4

Browse files
committed
🐛 fix lost peer deps
1 parent b96ba25 commit aa488e4

File tree

4 files changed

+62
-3
lines changed

4 files changed

+62
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ That's why `vue-tiny-validate` was born.
2020
- Easy. Come with familiar API and coherent documentation.
2121
- Tiny. Only **3.4KB** minified. **1.4KB** gzipped.
2222
- Flexible. Full control over everything.
23-
- Fully functional. Sync validation, async validation, etc supported.\
23+
- Fully functional. Sync validation, async validation, etc supported.
2424
- Compatible. Works with both Vue 2.6 and Vue 3.
2525

2626
## Usage

docs/change-log.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.2.3
1+
## 0.2.4
22

33
- Fix `result` value is **touched** / **dirtied** before finishing test.
44

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,13 @@
6363
"vite": "^2.3.5",
6464
"vite-plugin-windicss": "^1.0.4",
6565
"vitepress": "^0.15.3",
66+
"vue": "^3.2.4",
6667
"vue-jest": "^5.0.0-alpha.10",
6768
"windicss": "^3.1.3"
6869
},
6970
"peerDependencies": {
70-
"@vue/composition-api": "^1.0.0-rc.1"
71+
"@vue/composition-api": "^1.0.0-rc.1",
72+
"vue": ">= 2.6 || >=3.0.0"
7173
},
7274
"peerDependenciesMeta": {
7375
"@vue/composition-api": {

yarn.lock

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -997,6 +997,17 @@
997997
estree-walker "^2.0.1"
998998
source-map "^0.6.1"
999999

1000+
1001+
version "3.2.4"
1002+
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.2.4.tgz#a98d295771998c1e8dccc4ee3d52feb14b02aea9"
1003+
integrity sha512-c8NuQq7mUXXxA4iqD5VUKpyVeklK53+DMbojYMyZ0VPPrb0BUWrZWFiqSDT+MFDv0f6Hv3QuLiHWb1BWMXBbrw==
1004+
dependencies:
1005+
"@babel/parser" "^7.12.0"
1006+
"@babel/types" "^7.12.0"
1007+
"@vue/shared" "3.2.4"
1008+
estree-walker "^2.0.1"
1009+
source-map "^0.6.1"
1010+
10001011
10011012
version "3.0.11"
10021013
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.11.tgz#b15fc1c909371fd671746020ba55b5dab4a730ee"
@@ -1013,6 +1024,14 @@
10131024
"@vue/compiler-core" "3.1.1"
10141025
"@vue/shared" "3.1.1"
10151026

1027+
1028+
version "3.2.4"
1029+
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.4.tgz#3a43de243eba127abbe57e796a0b969d2df78c08"
1030+
integrity sha512-uj1nwO4794fw2YsYas5QT+FU/YGrXbS0Qk+1c7Kp1kV7idhZIghWLTjyvYibpGoseFbYLPd+sW2/noJG5H04EQ==
1031+
dependencies:
1032+
"@vue/compiler-core" "3.2.4"
1033+
"@vue/shared" "3.2.4"
1034+
10161035
"@vue/compiler-sfc@^3.0.5":
10171036
version "3.0.11"
10181037
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.11.tgz#cd8ca2154b88967b521f5ad3b10f5f8b6b665679"
@@ -1087,6 +1106,13 @@
10871106
dependencies:
10881107
"@vue/shared" "3.1.1"
10891108

1109+
1110+
version "3.2.4"
1111+
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.2.4.tgz#a020ad7e50f674219a07764b105b5922e61597ea"
1112+
integrity sha512-ljWTR0hr8Tn09hM2tlmWxZzCBPlgGLnq/k8K8X6EcJhtV+C8OzFySnbWqMWataojbrQOocThwsC8awKthSl2uQ==
1113+
dependencies:
1114+
"@vue/shared" "3.2.4"
1115+
10901116
10911117
version "3.0.11"
10921118
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.11.tgz#c52dfc6acf3215493623552c1c2919080c562e44"
@@ -1103,6 +1129,14 @@
11031129
"@vue/reactivity" "3.1.1"
11041130
"@vue/shared" "3.1.1"
11051131

1132+
1133+
version "3.2.4"
1134+
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.4.tgz#da5dde3dc1e48df99dd31ea9a972f5c02acdc3f5"
1135+
integrity sha512-W6PtEOs8P8jKYPo3JwaMAozZQivxInUleGfNwI2pK1t8ZLZIxn4kAf7p4VF4jJdQB8SZBzpfWdLUc06j7IOmpQ==
1136+
dependencies:
1137+
"@vue/reactivity" "3.2.4"
1138+
"@vue/shared" "3.2.4"
1139+
11061140
11071141
version "3.0.11"
11081142
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.11.tgz#7a552df21907942721feb6961c418e222a699337"
@@ -1121,6 +1155,15 @@
11211155
"@vue/shared" "3.1.1"
11221156
csstype "^2.6.8"
11231157

1158+
1159+
version "3.2.4"
1160+
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.4.tgz#1025595f2ae99a12fe0e1e6bce8df6761efec24b"
1161+
integrity sha512-HcVtLyn2SGwsf6BFPwkvDPDOhOqkOKcfHDpBp5R1coX+qMsOFrY8lJnGXIY+JnxqFjND00E9+u+lq5cs/W7ooA==
1162+
dependencies:
1163+
"@vue/runtime-core" "3.2.4"
1164+
"@vue/shared" "3.2.4"
1165+
csstype "^2.6.8"
1166+
11241167
"@vue/server-renderer@^3.1.1":
11251168
version "3.1.1"
11261169
resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.1.1.tgz#aaf687ae3699f485e33d8b732e6ce17e43071685"
@@ -1139,6 +1182,11 @@
11391182
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.1.1.tgz#2287cfc3dc20e5b20aeb65c2c3a56533bdca801c"
11401183
integrity sha512-g+4pzAw7PYSjARtLBoDq6DmcblX8i9KJHSCnyM5VDDFFifUaUT9iHbFpOF/KOizQ9f7QAqU2JH3Y6aXjzUMhVA==
11411184

1185+
1186+
version "3.2.4"
1187+
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.4.tgz#ba2a09527afff27b28d08f921b4a597e9504ca7a"
1188+
integrity sha512-j2j1MRmjalVKr3YBTxl/BClSIc8UQ8NnPpLYclxerK65JIowI4O7n8O8lElveEtEoHxy1d7BelPUDI0Q4bumqg==
1189+
11421190
"@vue/test-utils@^2.0.0-rc.9":
11431191
version "2.0.0-rc.9"
11441192
resolved "https://registry.yarnpkg.com/@vue/test-utils/-/test-utils-2.0.0-rc.9.tgz#b3f817d710a1d0ae2084143520c9d8d3c552bfa6"
@@ -5673,6 +5721,15 @@ vue@^3.1.1:
56735721
"@vue/runtime-dom" "3.1.1"
56745722
"@vue/shared" "3.1.1"
56755723

5724+
vue@^3.2.4:
5725+
version "3.2.4"
5726+
resolved "https://registry.yarnpkg.com/vue/-/vue-3.2.4.tgz#d94d88675e41c050d3a722d0848a7063b5e87a60"
5727+
integrity sha512-rNCFmoewm8IwmTK0nj3ysKq53iRpNEFKoBJ4inar6tIh7Oj7juubS39RI8UI+VE7x+Cs2z6PBsadtZu7z2qppg==
5728+
dependencies:
5729+
"@vue/compiler-dom" "3.2.4"
5730+
"@vue/runtime-dom" "3.2.4"
5731+
"@vue/shared" "3.2.4"
5732+
56765733
w3c-hr-time@^1.0.2:
56775734
version "1.0.2"
56785735
resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"

0 commit comments

Comments
 (0)