Skip to content

Commit ba3b786

Browse files
committed
bump deps
1 parent 82d9a53 commit ba3b786

File tree

2 files changed

+135
-56
lines changed

2 files changed

+135
-56
lines changed

package.json

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"json5": "^2.1.1",
3030
"loader-utils": "^2.0.0",
3131
"prettier": "^2.0.5",
32-
"vue-i18n": "^9.0.0-alpha.9"
32+
"vue-i18n": "^9.0.0-alpha.11"
3333
},
3434
"devDependencies": {
3535
"@types/flat": "^5.0.0",
@@ -48,7 +48,7 @@
4848
"@typescript-eslint/typescript-estree": "^3.0.0",
4949
"@vue/compiler-sfc": "^3.0.0-beta.14",
5050
"babel-loader": "^8.1.0",
51-
"eslint": "^7.0.0",
51+
"eslint": "^7.1.0",
5252
"eslint-config-prettier": "^6.10.1",
5353
"eslint-plugin-prettier": "^3.1.2",
5454
"eslint-plugin-vue-libs": "^4.0.0",
@@ -58,13 +58,14 @@
5858
"jsdom": "^16.0.0",
5959
"lerna-changelog": "^1.0.0",
6060
"memory-fs": "^0.5.0",
61+
"npm-run-all": "^4.1.5",
6162
"opener": "^1.5.1",
6263
"puppeteer": "^2.1.1",
6364
"shipjs": "^0.19.0",
6465
"ts-jest": "^26.0.0",
65-
"typescript": "^3.8.3",
66+
"typescript": "^3.9.5",
6667
"typescript-eslint-language-service": "^2.0.3",
67-
"vue": "^3.0.0-beta.14",
68+
"vue": "^3.0.0-beta.15",
6869
"vue-loader": "^16.0.0-beta.3",
6970
"webpack": "^4.43.0",
7071
"webpack-cli": "^3.3.11",
@@ -87,7 +88,7 @@
8788
"license": "MIT",
8889
"main": "lib/index.js",
8990
"peerDependencies": {
90-
"vue": "^3.0.0-beta.6"
91+
"vue": "^3.0.0-beta.15"
9192
},
9293
"repository": {
9394
"type": "git",
@@ -96,10 +97,13 @@
9697
"scripts": {
9798
"build": "tsc -p .",
9899
"build:watch": "tsc -p . --watch",
99-
"clean": "rm -rf ./coverage && rm -rf ./lib/*.js*",
100+
"clean": "npm-run-all clean:*",
101+
"clean:lib": "rm -rf ./lib/index.js",
102+
"clean:cache:jest": "jest --clearCache",
103+
"clean:coverage": "rm -rf ./coverage",
100104
"coverage": "opener coverage/lcov-report/index.html",
101105
"example": "yarn build && webpack-dev-server --config example/webpack.config.js --inline --hot",
102-
"fix": "yarn lint:fix && yarn format:fix",
106+
"fix": "npm-run-all --parallel lint:fix format:fix",
103107
"format": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{js,json,html}'",
104108
"format:fix": "yarn format --write",
105109
"lint": "eslint ./src ./test --ext .ts",
@@ -109,7 +113,7 @@
109113
"test": "yarn lint && yarn test:cover && yarn test:e2e",
110114
"test:cover": "yarn test:unit --coverage",
111115
"test:e2e": "yarn build && jest --runInBand --config ./jest.e2e.config.js",
112-
"test:unit": "jest --env node",
113-
"test:watch": "jest --env node --watch"
116+
"test:unit": "yarn clean:cache:jest && jest --env node",
117+
"test:watch": "clean:cache:jest && jest --env node --watch"
114118
}
115119
}

yarn.lock

Lines changed: 122 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -941,6 +941,17 @@
941941
estree-walker "^0.8.1"
942942
source-map "^0.6.1"
943943

944+
945+
version "3.0.0-beta.15"
946+
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.0-beta.15.tgz#8710a8e3ba15ba1a8b62bd17609d26bd27fdcc45"
947+
integrity sha512-NLNW7tAMHl8ybRgTPTIWLsi8aXHbFngY2x95eEHAdxhNasTY5NsgmQBBH9TBAUQEn6Wo8ybmuvQoNzgcw979Zg==
948+
dependencies:
949+
"@babel/parser" "^7.8.6"
950+
"@babel/types" "^7.8.6"
951+
"@vue/shared" "3.0.0-beta.15"
952+
estree-walker "^0.8.1"
953+
source-map "^0.6.1"
954+
944955
945956
version "3.0.0-beta.14"
946957
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.0-beta.14.tgz#2ea1c165e06e9630e687a7a5cbde4e8b20b064ac"
@@ -949,6 +960,14 @@
949960
"@vue/compiler-core" "3.0.0-beta.14"
950961
"@vue/shared" "3.0.0-beta.14"
951962

963+
964+
version "3.0.0-beta.15"
965+
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.0-beta.15.tgz#ee6dc9ae1dabb5c5c257d7cc20c5f3e95d5e5f4f"
966+
integrity sha512-0qVaCosZ6XrkmlSOndGlNh33JQ2oao82uWxC/qw4QWBGm6a1DcKkZFIZFYLQWg5ZIcSrEQrR1VzUidBaZw9AIg==
967+
dependencies:
968+
"@vue/compiler-core" "3.0.0-beta.15"
969+
"@vue/shared" "3.0.0-beta.15"
970+
952971
"@vue/compiler-sfc@^3.0.0-beta.14":
953972
version "3.0.0-beta.14"
954973
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.0-beta.14.tgz#3984416c0ed1bbdfbeee9d33c8a2c1152ed00770"
@@ -975,35 +994,40 @@
975994
"@vue/compiler-dom" "3.0.0-beta.14"
976995
"@vue/shared" "3.0.0-beta.14"
977996

978-
979-
version "3.0.0-beta.14"
980-
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0-beta.14.tgz#a041ec24ce2e545583a6a1a42774311c16870a91"
981-
integrity sha512-csqLljnM+8OBBAyzeUXGIYJhhph0DLOsHQwJGmz7uc342taW6XSi4MXaLk5MRiigunfmXxEswJGziwsh+4YP3g==
997+
998+
version "3.0.0-beta.15"
999+
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0-beta.15.tgz#4ee0942783d7ff09acab5b8755706597ba6234f6"
1000+
integrity sha512-Xa0LG8RTNlPYsuqOBhhV03xKhMmuSU0vtKXoIi1yxp9gGU7ga/TMmnhELb66AiupiXdLJwRcdv00KhPF/2y0dA==
9821001
dependencies:
983-
"@vue/shared" "3.0.0-beta.14"
1002+
"@vue/shared" "3.0.0-beta.15"
9841003

985-
986-
version "3.0.0-beta.14"
987-
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.0-beta.14.tgz#4f8162befd6ad1ac55cc6c142edc8301b090658a"
988-
integrity sha512-5WKNMd7lX0vdSMeNd1cF0VhM+N+kXicSXKKZtTfQLUfZt1gLuE3nlBhv1PqjGf79zXw5lQLzz6XoUY1i52rEkA==
1004+
1005+
version "3.0.0-beta.15"
1006+
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.0-beta.15.tgz#35c2ef61dadf07dfe9129dbea6fb8c1b88cc5bd6"
1007+
integrity sha512-jDkqSs1hsS9fRCgzah7VINafxWj7bYoDyweVuBqm6KPcHRfGkRZZxl2NltbbVaLH76Qvm4PPSnqGgEx7QtFSgg==
9891008
dependencies:
990-
"@vue/reactivity" "3.0.0-beta.14"
991-
"@vue/shared" "3.0.0-beta.14"
1009+
"@vue/reactivity" "3.0.0-beta.15"
1010+
"@vue/shared" "3.0.0-beta.15"
9921011

993-
994-
version "3.0.0-beta.14"
995-
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.0-beta.14.tgz#080e9dd48a95da639f9fcc6d70a2d9620aec6ab8"
996-
integrity sha512-nwHvG+IsO0Ttl39NPvQKX2vv5H4XWZVzZCX1rqEIBP3llHyyB9dMrNSPcw54YlPGrEuCwBxVDokHG4CSeVEdtg==
1012+
1013+
version "3.0.0-beta.15"
1014+
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.0-beta.15.tgz#e3ce740c5e3766020719b174686bd65c75975c7e"
1015+
integrity sha512-161rUw1sWfbv51Ua8gKXaPc+seRJQcV+MLokTJtqYtNCajya0Mx6vdXJajBWqjDT8/Udx0sb7Wm/K/0DfGBUTw==
9971016
dependencies:
998-
"@vue/runtime-core" "3.0.0-beta.14"
999-
"@vue/shared" "3.0.0-beta.14"
1017+
"@vue/runtime-core" "3.0.0-beta.15"
1018+
"@vue/shared" "3.0.0-beta.15"
10001019
csstype "^2.6.8"
10011020

10021021
10031022
version "3.0.0-beta.14"
10041023
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.0-beta.14.tgz#886afe5c233a5b255c186142324c40f114958af5"
10051024
integrity sha512-mnK5teJMLzsBE56Kys+uiyR/jAl1kbokHZ++MnlP7ls9icPqZ/QQE/VTDl3QJ7IHteS2VR6ytAz/Aa/4Dpv/ew==
10061025

1026+
1027+
version "3.0.0-beta.15"
1028+
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.0-beta.15.tgz#77444ab234e229c3fdcc9f394678e167a55757af"
1029+
integrity sha512-wViILT5GgxMtnXVQ1xupj43wvnZ41g3NLWaBObs7l+eTxz5vq5yx72qH6HRpsfhR2Mg39jE0cfNLFEpC4lJIUQ==
1030+
10071031
"@webassemblyjs/[email protected]":
10081032
version "1.9.0"
10091033
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
@@ -1208,6 +1232,11 @@ acorn@^7.1.1:
12081232
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf"
12091233
integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==
12101234

1235+
acorn@^7.2.0:
1236+
version "7.3.1"
1237+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd"
1238+
integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA==
1239+
12111240
add-stream@^1.0.0:
12121241
version "1.0.0"
12131242
resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa"
@@ -2544,7 +2573,7 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
25442573
safe-buffer "^5.0.1"
25452574
sha.js "^2.4.8"
25462575

2547-
[email protected], cross-spawn@^6.0.0:
2576+
[email protected], cross-spawn@^6.0.0, cross-spawn@^6.0.5:
25482577
version "6.0.5"
25492578
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
25502579
integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
@@ -3157,6 +3186,14 @@ eslint-scope@^5.0.0:
31573186
esrecurse "^4.1.0"
31583187
estraverse "^4.1.1"
31593188

3189+
eslint-scope@^5.1.0:
3190+
version "5.1.0"
3191+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5"
3192+
integrity sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w==
3193+
dependencies:
3194+
esrecurse "^4.1.0"
3195+
estraverse "^4.1.1"
3196+
31603197
eslint-utils@^2.0.0:
31613198
version "2.0.0"
31623199
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.0.0.tgz#7be1cc70f27a72a76cd14aa698bcabed6890e1cd"
@@ -3169,21 +3206,26 @@ eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
31693206
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
31703207
integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
31713208

3172-
eslint@^7.0.0:
3173-
version "7.0.0"
3174-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.0.0.tgz#c35dfd04a4372110bd78c69a8d79864273919a08"
3175-
integrity sha512-qY1cwdOxMONHJfGqw52UOpZDeqXy8xmD0u8CT6jIstil72jkhURC704W8CFyTPDPllz4z4lu0Ql1+07PG/XdIg==
3209+
eslint-visitor-keys@^1.2.0:
3210+
version "1.2.0"
3211+
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.2.0.tgz#74415ac884874495f78ec2a97349525344c981fa"
3212+
integrity sha512-WFb4ihckKil6hu3Dp798xdzSfddwKKU3+nGniKF6HfeW6OLd2OUDEPP7TcHtB5+QXOKg2s6B2DaMPE1Nn/kxKQ==
3213+
3214+
eslint@^7.1.0:
3215+
version "7.2.0"
3216+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.2.0.tgz#d41b2e47804b30dbabb093a967fb283d560082e6"
3217+
integrity sha512-B3BtEyaDKC5MlfDa2Ha8/D6DsS4fju95zs0hjS3HdGazw+LNayai38A25qMppK37wWGWNYSPOR6oYzlz5MHsRQ==
31763218
dependencies:
31773219
"@babel/code-frame" "^7.0.0"
31783220
ajv "^6.10.0"
31793221
chalk "^4.0.0"
31803222
cross-spawn "^7.0.2"
31813223
debug "^4.0.1"
31823224
doctrine "^3.0.0"
3183-
eslint-scope "^5.0.0"
3225+
eslint-scope "^5.1.0"
31843226
eslint-utils "^2.0.0"
3185-
eslint-visitor-keys "^1.1.0"
3186-
espree "^7.0.0"
3227+
eslint-visitor-keys "^1.2.0"
3228+
espree "^7.1.0"
31873229
esquery "^1.2.0"
31883230
esutils "^2.0.2"
31893231
file-entry-cache "^5.0.1"
@@ -3225,14 +3267,14 @@ espree@^4.1.0:
32253267
acorn-jsx "^5.0.0"
32263268
eslint-visitor-keys "^1.0.0"
32273269

3228-
espree@^7.0.0:
3229-
version "7.0.0"
3230-
resolved "https://registry.yarnpkg.com/espree/-/espree-7.0.0.tgz#8a7a60f218e69f120a842dc24c5a88aa7748a74e"
3231-
integrity sha512-/r2XEx5Mw4pgKdyb7GNLQNsu++asx/dltf/CI8RFi9oGHxmQFgvLbc5Op4U6i8Oaj+kdslhJtVlEZeAqH5qOTw==
3270+
espree@^7.1.0:
3271+
version "7.1.0"
3272+
resolved "https://registry.yarnpkg.com/espree/-/espree-7.1.0.tgz#a9c7f18a752056735bf1ba14cb1b70adc3a5ce1c"
3273+
integrity sha512-dcorZSyfmm4WTuTnE5Y7MEN1DyoPYy1ZR783QW1FJoenn7RailyWFsq/UL6ZAAA7uXurN9FIpYyUs3OfiIW+Qw==
32323274
dependencies:
3233-
acorn "^7.1.1"
3275+
acorn "^7.2.0"
32343276
acorn-jsx "^5.2.0"
3235-
eslint-visitor-keys "^1.1.0"
3277+
eslint-visitor-keys "^1.2.0"
32363278

32373279
esprima@^4.0.0, esprima@^4.0.1:
32383280
version "4.0.1"
@@ -5799,6 +5841,11 @@ memory-fs@^0.5.0:
57995841
errno "^0.1.3"
58005842
readable-stream "^2.0.1"
58015843

5844+
memorystream@^0.3.1:
5845+
version "0.3.1"
5846+
resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2"
5847+
integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI=
5848+
58025849
meow@^3.3.0:
58035850
version "3.7.0"
58045851
resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
@@ -6269,6 +6316,21 @@ normalize-path@^3.0.0:
62696316
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
62706317
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
62716318

6319+
npm-run-all@^4.1.5:
6320+
version "4.1.5"
6321+
resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba"
6322+
integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==
6323+
dependencies:
6324+
ansi-styles "^3.2.1"
6325+
chalk "^2.4.1"
6326+
cross-spawn "^6.0.5"
6327+
memorystream "^0.3.1"
6328+
minimatch "^3.0.4"
6329+
pidtree "^0.3.0"
6330+
read-pkg "^3.0.0"
6331+
shell-quote "^1.6.1"
6332+
string.prototype.padend "^3.0.0"
6333+
62726334
npm-run-path@^2.0.0:
62736335
version "2.0.2"
62746336
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
@@ -6775,6 +6837,11 @@ picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
67756837
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
67766838
integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
67776839

6840+
pidtree@^0.3.0:
6841+
version "0.3.1"
6842+
resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a"
6843+
integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==
6844+
67786845
pify@^2.0.0, pify@^2.3.0:
67796846
version "2.3.0"
67806847
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
@@ -7776,7 +7843,7 @@ shebang-regex@^3.0.0:
77767843
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
77777844
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
77787845

7779-
shell-quote@^1.7.2:
7846+
shell-quote@^1.6.1, shell-quote@^1.7.2:
77807847
version "1.7.2"
77817848
resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
77827849
integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
@@ -8201,6 +8268,14 @@ string-width@^4.1.0, string-width@^4.2.0:
82018268
is-fullwidth-code-point "^3.0.0"
82028269
strip-ansi "^6.0.0"
82038270

8271+
string.prototype.padend@^3.0.0:
8272+
version "3.1.0"
8273+
resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.0.tgz#dc08f57a8010dc5c153550318f67e13adbb72ac3"
8274+
integrity sha512-3aIv8Ffdp8EZj8iLwREGpQaUZiPyrWrpzMBHvkiSW/bK/EGve9np07Vwy7IJ5waydpGXzQZu/F8Oze2/IWkBaA==
8275+
dependencies:
8276+
define-properties "^1.1.3"
8277+
es-abstract "^1.17.0-next.1"
8278+
82048279
string.prototype.trimend@^1.0.0:
82058280
version "1.0.1"
82068281
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913"
@@ -8734,10 +8809,10 @@ typescript-eslint-language-service@^2.0.3:
87348809
dependencies:
87358810
read-pkg-up "^7.0.0"
87368811

8737-
typescript@^3.8.3:
8738-
version "3.8.3"
8739-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061"
8740-
integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==
8812+
typescript@^3.9.5:
8813+
version "3.9.5"
8814+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.5.tgz#586f0dba300cde8be52dd1ac4f7e1009c1b13f36"
8815+
integrity sha512-hSAifV3k+i6lEoCJ2k6R2Z/rp/H3+8sdmcn5NrS3/3kE7+RyZXm9aqvxWqjEXHAd8b0pShatpcdMTvEdvAJltQ==
87418816

87428817
uglify-js@^3.1.4:
87438818
version "3.9.1"
@@ -8969,10 +9044,10 @@ vue-eslint-parser@^5.0.0:
89699044
esquery "^1.0.1"
89709045
lodash "^4.17.11"
89719046

8972-
vue-i18n@^9.0.0-alpha.9:
8973-
version "9.0.0-alpha.9"
8974-
resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.0.0-alpha.9.tgz#38662658e2464893a851475c067710d529ef037c"
8975-
integrity sha512-4yNTlwUVJRB7C5HOW7l3s4HLWNTEU4Xy1LAa4OfWY0HNYvQ3qi2c55bZvvTmTpFm6I6TKjRWAZC+VFoaSGfrdQ==
9047+
vue-i18n@^9.0.0-alpha.11:
9048+
version "9.0.0-alpha.11"
9049+
resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-9.0.0-alpha.11.tgz#66fc7227022ad40b12b562dace5cb9b739cac3ff"
9050+
integrity sha512-Ro+85srXAO/eyG/eb1+WOqqxFln7PEP2uv8XSiBfOH1lRGYXu/h5Ixunr1cOHwLJ5cYc1BSkFWW937brYer/tA==
89769051

89779052
vue-loader@^16.0.0-beta.3:
89789053
version "16.0.0-beta.3"
@@ -8986,14 +9061,14 @@ vue-loader@^16.0.0-beta.3:
89869061
merge-source-map "^1.1.0"
89879062
source-map "^0.6.1"
89889063

8989-
vue@^3.0.0-beta.14:
8990-
version "3.0.0-beta.14"
8991-
resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.0-beta.14.tgz#d2c8739e00c4a4a06b519c14c57d204c350c980c"
8992-
integrity sha512-0MH1g5O3zX8ijvZuiQTYFq3UwHxtj512I/wrMPQLVXwjqb+ILA+fooSpdz4xgUBBl5zN/K9xJIwbl23sv+Sn7A==
9064+
vue@^3.0.0-beta.15:
9065+
version "3.0.0-beta.15"
9066+
resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.0-beta.15.tgz#99f107534755d3a237b51fc1279c43af2fefde6e"
9067+
integrity sha512-KTmvfNpkvD6mao8vloqjUMjrHEivS1HZvHmYeHPRHqU2HRvNcrZuwXYvETt3dGOTu0Oj7zAWQXP+uZ34CW75sw==
89939068
dependencies:
8994-
"@vue/compiler-dom" "3.0.0-beta.14"
8995-
"@vue/runtime-dom" "3.0.0-beta.14"
8996-
"@vue/shared" "3.0.0-beta.14"
9069+
"@vue/compiler-dom" "3.0.0-beta.15"
9070+
"@vue/runtime-dom" "3.0.0-beta.15"
9071+
"@vue/shared" "3.0.0-beta.15"
89979072

89989073
w3c-hr-time@^1.0.2:
89999074
version "1.0.2"

0 commit comments

Comments
 (0)