Skip to content

Commit dd0f24e

Browse files
authored
upgrade deps (#70)
1 parent 19ab9e7 commit dd0f24e

File tree

5 files changed

+203
-180
lines changed

5 files changed

+203
-180
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/setup-node@v1
1616
with:
1717
registry-url: "https://registry.npmjs.org"
18-
- run: git switch master
18+
- run: git switch next
1919
- run: |
2020
if [ -f "yarn.lock" ]; then
2121
yarn install
@@ -26,4 +26,4 @@ jobs:
2626
env:
2727
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
2828
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
29-
SLACK_INCOMING_HOOK: ${{ secrets.SLACK_INCOMING_HOOK }}
29+
SLACK_INCOMING_HOOK: ${{ secrets.SLACK_INCOMING_HOOK }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# :globe_with_meridians: @intlify/vue-i18n-extensions
22

3-
[![CircleCI](https://circleci.com/gh/intlify/vue-i18n-extensions/tree/master.svg?style=svg)](https://circleci.com/gh/intlify/vue-i18n-extensions/tree/dev)
3+
[![CircleCI](https://circleci.com/gh/intlify/vue-i18n-extensions/tree/next.svg?style=svg)](https://circleci.com/gh/intlify/vue-i18n-extensions/tree/dev)
44
[![npm](https://img.shields.io/npm/v/@intlify/vue-i18n-extensions.svg)](https://www.npmjs.com/package/@intlify/vue-i18n-extensions)
55
[![vue-i18n-extensions Dev Token](https://badge.devtoken.rocks/vue-i18n-extensions)](https://devtoken.rocks/package/vue-i18n-extensions)
66

77
> Extensions for vue-i18n
88
99
**NOTE:** :warning: This `next` branch is development branch for Vue 3! The stable version is now in [`master`](https://github.com/intlify/vue-i18n-extensions/tree/master) branch!
1010

11-
## Status: Alpha ![Test](https://github.com/intlify/vue-i18n-extensions/workflows/Test/badge.svg)
11+
## Status: Beta ![Test](https://github.com/intlify/vue-i18n-extensions/workflows/Test/badge.svg)
1212

1313
This library exports the following extensions:
1414

jest-puppeteer.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
server: {
33
port: 8080,
4-
aunchTimeout: 10000,
4+
launchTimeout: 10000,
55
command:
66
'webpack-dev-server --config example/webpack.config.js --inline --hot'
77
},

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,25 @@
2525
},
2626
"dependencies": {
2727
"@babel/parser": "^7.9.6",
28-
"@vue/compiler-dom": "^3.0.0-rc.5",
29-
"@vue/shared": "^3.0.0-rc.5",
30-
"vue-i18n": "^9.0.0-alpha.12"
28+
"@vue/compiler-dom": "^3.0.0-rc.12",
29+
"@vue/shared": "^3.0.0-rc.12",
30+
"vue-i18n": "^9.0.0-beta.2"
3131
},
3232
"devDependencies": {
3333
"@microsoft/api-extractor": "^7.9.3",
3434
"@types/jest": "^26.0.0",
3535
"@types/node": "^13.1.4",
3636
"@types/webpack": "^4.41.1",
3737
"@types/webpack-merge": "^4.1.5",
38-
"@typescript-eslint/eslint-plugin": "^4.0.0",
39-
"@typescript-eslint/parser": "^4.0.0",
40-
"@vue/compiler-sfc": "^3.0.0-rc.5",
41-
"@vue/compiler-ssr": "^3.0.0-rc.5",
42-
"@vue/runtime-dom": "^3.0.0-rc.5",
43-
"@vue/server-renderer": "^3.0.0-rc.5",
44-
"api-docs-gen": "^0.1.2",
38+
"@typescript-eslint/eslint-plugin": "^4.1.0",
39+
"@typescript-eslint/parser": "^4.1.0",
40+
"@vue/compiler-sfc": "^3.0.0-rc.12",
41+
"@vue/compiler-ssr": "^3.0.0-rc.12",
42+
"@vue/runtime-dom": "^3.0.0-rc.12",
43+
"@vue/server-renderer": "^3.0.0-rc.12",
44+
"api-docs-gen": "^0.1.3",
4545
"babel-loader": "^8.1.0",
46-
"eslint": "^7.6.0",
46+
"eslint": "^7.9.0",
4747
"eslint-config-prettier": "^6.10.1",
4848
"eslint-plugin-prettier": "^3.1.2",
4949
"eslint-plugin-vue-libs": "^4.0.0",
@@ -58,8 +58,8 @@
5858
"ts-jest": "^26.0.0",
5959
"typescript": "^4.0.0",
6060
"typescript-eslint-language-service": "^4.0.0",
61-
"vue": "^3.0.0-rc.5",
62-
"vue-loader": "^16.0.0-beta.4",
61+
"vue": "^3.0.0-rc.12",
62+
"vue-loader": "^16.0.0-beta.7",
6363
"webpack": "^4.42.1",
6464
"webpack-cli": "^3.3.11",
6565
"webpack-dev-server": "^3.10.3",
@@ -84,7 +84,7 @@
8484
"license": "MIT",
8585
"main": "lib/index.js",
8686
"peerDependencies": {
87-
"vue": "^3.0.0-rc.5"
87+
"vue": "^3.0.0-rc.12"
8888
},
8989
"types": "dist/vue-i18n-extensions.d.ts",
9090
"repository": {

0 commit comments

Comments
 (0)