Skip to content

Commit d7acff5

Browse files
committed
chore: merge branch 'dev' into master
2 parents 7f2140a + 807382c commit d7acff5

File tree

134 files changed

+4119
-2651
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+4119
-2651
lines changed

.circleci/config.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
- checkout
1919
- restore_cache:
2020
keys:
21-
- v2-vue-cli-{{ .Branch }}-{{ checksum "yarn.lock" }}
21+
- v2-vue-cli-{{ checksum "yarn.lock" }}
2222
- run: yarn --network-timeout 600000
2323
- save_cache:
24-
key: v2-vue-cli-{{ .Branch }}-{{ checksum "yarn.lock" }}
24+
key: v2-vue-cli-{{ checksum "yarn.lock" }}
2525
paths:
2626
- node_modules/
2727
- ~/.cache
@@ -52,7 +52,16 @@ jobs:
5252
at: ~/
5353
- run: yarn lint-without-fix
5454
- run: yarn check-links
55+
- restore_cache:
56+
keys:
57+
# TODO: should use a more accurate cache key
58+
- v2-vue-cli-offline-{{ checksum "yarn.lock" }}
59+
- run: yarn config set yarn-offline-mirror ~/npm-packages-offline-cache
5560
- run: yarn test -p cli-service-global,eslint,pwa,babel,babel-preset-app,vuex,router
61+
- save_cache:
62+
key: v2-vue-cli-offline-{{ checksum "yarn.lock" }}
63+
paths:
64+
- ~/npm-packages-offline-cache
5665

5766
group-4:
5867
<<: *defaults

CHANGELOG.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,91 @@
11

2+
## 4.2.0 (2020-02-07)
3+
4+
#### :rocket: New Features
5+
* `@vue/cli-plugin-babel`, `@vue/cli-plugin-eslint`, `@vue/cli-plugin-typescript`, `@vue/cli`
6+
* [#5149](https://github.com/vuejs/vue-cli/pull/5149) feat(GeneratorAPI): allow passing options to `api.extendPackage` ([@sodatea](https://github.com/sodatea))
7+
* `@vue/cli-plugin-unit-jest`, `@vue/cli-plugin-unit-mocha`
8+
* [#5147](https://github.com/vuejs/vue-cli/pull/5147) feat: create projects with @vue/test-utils beta 31 ([@sodatea](https://github.com/sodatea))
9+
* `@vue/cli-ui`, `@vue/cli`
10+
* [#5134](https://github.com/vuejs/vue-cli/pull/5134) feat: lock minor versions when creating projects / adding plugins ([@sodatea](https://github.com/sodatea))
11+
* `@vue/cli-plugin-typescript`, `@vue/cli-ui`
12+
* [#5128](https://github.com/vuejs/vue-cli/pull/5128) feat: upgrade to typescript@~3.7.5 ([@sodatea](https://github.com/sodatea))
13+
* `@vue/cli`
14+
* [#5091](https://github.com/vuejs/vue-cli/pull/5091) feat: `vue upgrade` monorepo support, `--from` option, and a new `vue migrate --from` command ([@sodatea](https://github.com/sodatea))
15+
* [#4828](https://github.com/vuejs/vue-cli/pull/4828) feat: add option `--merge` to `create` command ([@zyy7259](https://github.com/zyy7259))
16+
* `@vue/cli-service`
17+
* [#4953](https://github.com/vuejs/vue-cli/pull/4953) feat: adds transparent PnP support to Webpack ([@arcanis](https://github.com/arcanis))
18+
* [#2411](https://github.com/vuejs/vue-cli/pull/2411) feat(cli): add `--stdin` flag to serve ([@nullpilot](https://github.com/nullpilot))
19+
* `@vue/babel-preset-app`, `@vue/cli-plugin-e2e-nightwatch`, `@vue/cli-plugin-eslint`, `@vue/cli-plugin-pwa`, `@vue/cli-ui-addon-webpack`, `@vue/cli-ui-addon-widgets`, `@vue/cli-ui`, `@vue/cli`
20+
* [#4933](https://github.com/vuejs/vue-cli/pull/4933) feat: upgrade to eslint 6 ([@sodatea](https://github.com/sodatea))
21+
* `@vue/cli-service`, `@vue/cli-shared-utils`, `@vue/cli`
22+
* [#4827](https://github.com/vuejs/vue-cli/pull/4827) feat: respect existing package.json ([@zyy7259](https://github.com/zyy7259))
23+
* `@vue/babel-preset-app`
24+
* [#4959](https://github.com/vuejs/vue-cli/pull/4959) feat: specify babel runtime version ([@zyy7259](https://github.com/zyy7259))
25+
* `@vue/cli-service-global`
26+
* [#5029](https://github.com/vuejs/vue-cli/pull/5029) feat: don't throw on console/debugger statements for `vue serve` ([@sodatea](https://github.com/sodatea))
27+
28+
#### :bug: Bug Fix
29+
* `@vue/cli-shared-utils`, `@vue/cli`
30+
* [#5150](https://github.com/vuejs/vue-cli/pull/5150) fix: should infer package manager from config if there's no lockfile in the project ([@sodatea](https://github.com/sodatea))
31+
* [#5045](https://github.com/vuejs/vue-cli/pull/5045) refactor: use a plain http request to get package metadata ([@sodatea](https://github.com/sodatea))
32+
* `@vue/cli`
33+
* [#5062](https://github.com/vuejs/vue-cli/pull/5062) fix `afterInvoke`/`onCreateComplete` callbacks in Migrator ([@sodatea](https://github.com/sodatea))
34+
* [#5038](https://github.com/vuejs/vue-cli/pull/5038) fix: `extendPackage` dependency versions should be string ([@pksunkara](https://github.com/pksunkara))
35+
* `@vue/cli-ui`, `@vue/cli`
36+
* [#4985](https://github.com/vuejs/vue-cli/pull/4985) fix(CORS): only allow connections from the designated host ([@Akryum](https://github.com/Akryum))
37+
* [#5142](https://github.com/vuejs/vue-cli/pull/5142) fix(CORS): fixup #4985, allow same-origin ws requests of any domain ([@sodatea](https://github.com/sodatea))
38+
* `@vue/cli-plugin-e2e-cypress`
39+
* [#5108](https://github.com/vuejs/vue-cli/pull/5108) fix(e2e-cypress): make `--headless` work with `--browser chrome` ([@LinusBorg](https://github.com/LinusBorg))
40+
* [#4910](https://github.com/vuejs/vue-cli/pull/4910) fix: comment eslint disable in cypress config ([@cexbrayat](https://github.com/cexbrayat))
41+
* `@vue/cli-service`
42+
* [#5113](https://github.com/vuejs/vue-cli/pull/5113) fix: correctly calculate cacheIdentifier from lockfiles ([@sodatea](https://github.com/sodatea))
43+
* `@vue/cli-plugin-pwa`
44+
* [#5089](https://github.com/vuejs/vue-cli/pull/5089) fix: pwa-plugin avoid generating manifest when path is an URL ([@tkint](https://github.com/tkint))
45+
* `@vue/cli-plugin-unit-jest`, `@vue/cli-plugin-unit-mocha`
46+
* [#5028](https://github.com/vuejs/vue-cli/pull/5028) fix applyESLint when eslint plugin is added after unit test plugins ([@sodatea](https://github.com/sodatea))
47+
* `@vue/cli-service`, `@vue/cli-test-utils`
48+
* [#5069](https://github.com/vuejs/vue-cli/pull/5069) Use a single websocket connection for HMR ([@lbogdan](https://github.com/lbogdan))
49+
* `@vue/cli-plugin-e2e-nightwatch`
50+
* [#5016](https://github.com/vuejs/vue-cli/pull/5016) fix(e2e-nightwatch): check for correct flag name ([@LinusBorg](https://github.com/LinusBorg))
51+
52+
#### :memo: Documentation
53+
* [#5019](https://github.com/vuejs/vue-cli/pull/5019) Updated zh-cn translation in cli section ([@mactanxin](https://github.com/mactanxin))
54+
55+
#### :house: Internal
56+
* `@vue/babel-preset-app`, `@vue/cli-plugin-babel`
57+
* [#5133](https://github.com/vuejs/vue-cli/pull/5133) refactor: remove usage of deprecated babel functions, preparing for babel 8 ([@sodatea](https://github.com/sodatea))
58+
* `@vue/cli-service`
59+
* [#5123](https://github.com/vuejs/vue-cli/pull/5123) fix: `vue-template-compiler` can be optional if `@vue/compiler-sfc` presents ([@sodatea](https://github.com/sodatea))
60+
* [#5060](https://github.com/vuejs/vue-cli/pull/5060) refactor: use the `title` option in the html template, instead of hard-code the project name ([@sodatea](https://github.com/sodatea))
61+
* `@vue/cli`
62+
* [#5110](https://github.com/vuejs/vue-cli/pull/5110) refactor: use env variables to set registry for package managers ([@sodatea](https://github.com/sodatea))
63+
* `@vue/cli-shared-utils`
64+
* [#5092](https://github.com/vuejs/vue-cli/pull/5092) refactor: use `createRequire` to load/resolve modules ([@sodatea](https://github.com/sodatea))
65+
* `@vue/cli-plugin-router`, `@vue/cli-plugin-typescript`, `@vue/cli-service`
66+
* [#4991](https://github.com/vuejs/vue-cli/pull/4991) 🎨 style: unified components' naming style ([@taoweicn](https://github.com/taoweicn))
67+
68+
#### Committers: 17
69+
- Alexander Sokolov ([@Alex-Sokolov](https://github.com/Alex-Sokolov))
70+
- Bogdan Luca ([@lbogdan](https://github.com/lbogdan))
71+
- Cédric Exbrayat ([@cexbrayat](https://github.com/cexbrayat))
72+
- Dan Hogan ([@danhogan](https://github.com/danhogan))
73+
- Daniel Bächtold ([@danbaechtold](https://github.com/danbaechtold))
74+
- Eduardo San Martin Morote ([@posva](https://github.com/posva))
75+
- Guillaume Chau ([@Akryum](https://github.com/Akryum))
76+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
77+
- Marcel Lindig ([@nullpilot](https://github.com/nullpilot))
78+
- Maël Nison ([@arcanis](https://github.com/arcanis))
79+
- Pavan Kumar Sunkara ([@pksunkara](https://github.com/pksunkara))
80+
- Tao Wei ([@taoweicn](https://github.com/taoweicn))
81+
- Thomas Kint ([@tkint](https://github.com/tkint))
82+
- Thorsten Lünborg ([@LinusBorg](https://github.com/LinusBorg))
83+
- Xin Tan ([@mactanxin](https://github.com/mactanxin))
84+
- Yingya Zhang ([@zyy7259](https://github.com/zyy7259))
85+
- plantainX ([@cheqianxiao](https://github.com/cheqianxiao))
86+
87+
88+
289
## 4.1.2 (2019-12-28)
390

491
#### :bug: Bug Fix

appveyor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@ test_script:
1010
- git --version
1111
- node --version
1212
- yarn --version
13+
- yarn config set yarn-offline-mirror ./npm-packages-offline-cache
1314
- yarn test
1415
# ui tests temporarily disabled due to Cypress 3.0 issue on windows
1516
# - cd "packages/@vue/cli-ui" && yarn test
1617

1718
cache:
18-
- node_modules -> yarn.lock
19+
- node_modules -> appveyor.yml, **\package.json, yarn.lock
20+
- '%LOCALAPPDATA%\Yarn -> appveyor.yml, **\package.json, yarn.lock'
21+
- npm-packages-offline-cache -> appveyor.yml, **\package.json, yarn.lock
1922

2023
build: off
2124

docs/core-plugins/pwa.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ file, or the `"vue"` field in `package.json`.
6969

7070
- Default: `'manifest.json'`
7171

72-
The path of app’s manifest.
72+
The path of app’s manifest. If the path is an URL, the plugin won't generate a manifest.json in the dist directory during the build.
7373

7474
- **pwa.manifestOptions**
7575

docs/ru/config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ module.exports = {
147147

148148
Для отображения ошибок линтинга в браузере можно указать `lintOnSave: 'default'`. Это заставит `eslint-loader` генерировать ошибки и любые ошибки линтинга приведут к неудаче компиляции сборки.
149149

150-
Установка значения в `'errors'` заставит `eslint-loader` считать все предупреждения ошибками, а значит и они будут отображены в браузере.
150+
Установка значения в `'error'` заставит `eslint-loader` считать все предупреждения ошибками, а значит и они будут отображены в браузере.
151151

152152
Кроме того, можно настроить отображение в браузере предупреждений и ошибок:
153153

docs/ru/core-plugins/pwa.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@
2626

2727
Настройки, передаваемые в используемый `workbox-webpack-plugin`.
2828

29+
При использовании шаблона App Shell в режиме `GenerateSW` можно настроить точку входа таким образом, чтобы убедиться, что все страницы загружаются в оффлайне:
30+
```js
31+
navigateFallback: 'index.html'
32+
```
33+
2934
Для получения дополнительной информации о поддерживаемых значениях обратитесь к руководству для [`GenerateSW`](https://developers.google.com/web/tools/workbox/modules/workbox-webpack-plugin#full_generatesw_config) или для [`InjectManifest`](https://developers.google.com/web/tools/workbox/modules/workbox-webpack-plugin#full_injectmanifest_config).
3035

3136
- **pwa.name**
@@ -106,6 +111,13 @@ module.exports = {
106111
appleMobileWebAppCapable: 'yes',
107112
appleMobileWebAppStatusBarStyle: 'black',
108113
114+
// настройки манифеста
115+
manifestOptions: {
116+
display: 'landscape',
117+
background_color: '#42B883'
118+
// ...другие настройки манифеста...
119+
},
120+
109121
// настройка workbox-плагина
110122
workboxPluginMode: 'InjectManifest',
111123
workboxOptions: {

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"npmClient": "yarn",
33
"useWorkspaces": true,
4-
"version": "4.1.2",
4+
"version": "4.2.0",
55
"packages": [
66
"packages/@vue/babel-preset-app",
77
"packages/@vue/cli*",

package.json

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -44,50 +44,55 @@
4444
]
4545
},
4646
"devDependencies": {
47-
"@babel/core": "^7.7.4",
48-
"@vue/eslint-config-airbnb": "^4.0.0",
49-
"@vue/eslint-config-prettier": "^5.0.0",
50-
"@vue/eslint-config-standard": "^4.0.0",
51-
"@vue/eslint-config-typescript": "^4.0.0",
52-
"@vuepress/plugin-pwa": "^1.2.0",
53-
"@vuepress/theme-vue": "^1.2.0",
47+
"@babel/core": "^7.8.4",
48+
"@vue/eslint-config-airbnb": "^5.0.2",
49+
"@vue/eslint-config-prettier": "^6.0.0",
50+
"@vue/eslint-config-standard": "^5.1.0",
51+
"@vue/eslint-config-typescript": "^5.0.1",
52+
"@vuepress/plugin-pwa": "^1.3.0",
53+
"@vuepress/theme-vue": "^1.3.0",
54+
"@typescript-eslint/eslint-plugin": "^2.18.0",
55+
"@typescript-eslint/parser": "^2.18.0",
5456
"babel-core": "7.0.0-bridge.0",
5557
"babel-eslint": "^10.0.3",
5658
"babel-jest": "^24.9.0",
57-
"chromedriver": "^78.0.1",
59+
"chromedriver": "^80.0.0",
5860
"debug": "^4.1.0",
59-
"eslint": "^5.16.0",
61+
"eslint": "^6.7.2",
62+
"eslint-plugin-import": "^2.20.1",
6063
"eslint-plugin-graphql": "^3.1.0",
61-
"eslint-plugin-node": "^9.1.0",
64+
"eslint-plugin-node": "^11.0.0",
6265
"eslint-plugin-prettier": "^3.1.1",
63-
"eslint-plugin-vue": "^5.2.2",
66+
"eslint-plugin-promise": "^4.2.1",
67+
"eslint-plugin-standard": "^4.0.0",
68+
"eslint-plugin-vue": "^6.1.2",
6469
"eslint-plugin-vue-libs": "^4.0.0",
6570
"execa": "^1.0.0",
6671
"geckodriver": "^1.19.1",
6772
"globby": "^9.2.0",
68-
"graphql": "^14.3.1",
69-
"http-server": "^0.11.1",
73+
"graphql": "^14.6.0",
74+
"http-server": "^0.12.1",
7075
"inquirer": "^6.3.1",
7176
"jest": "^24.9.0",
7277
"lerna": "^3.19.0",
7378
"lerna-changelog": "^0.8.3",
7479
"lint-staged": "^9.5.0",
75-
"memfs": "^3.0.1",
80+
"memfs": "^3.0.4",
7681
"minimist": "^1.2.0",
7782
"prettier": ">= 1.13.0",
7883
"request": "^2.87.0",
7984
"request-promise-native": "^1.0.8",
80-
"rimraf": "^3.0.0",
85+
"rimraf": "^3.0.1",
8186
"semver": "^6.1.0",
82-
"typescript": "^3.4.5",
83-
"vuepress": "^1.2.0",
87+
"typescript": "~3.7.5",
88+
"vuepress": "^1.3.0",
8489
"webpack": "^4.0.0",
8590
"yorkie": "^2.0.0"
8691
},
8792
"resolutions": {
8893
"puppeteer": "1.11.0",
89-
"vue": "^2.6.10",
90-
"vue-template-compiler": "^2.6.10",
91-
"vue-server-renderer": "^2.6.10"
94+
"vue": "^2.6.11",
95+
"vue-template-compiler": "^2.6.11",
96+
"vue-server-renderer": "^2.6.11"
9297
}
9398
}

packages/@vue/babel-preset-app/index.js

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,16 @@ const defaultPolyfills = [
1414
]
1515

1616
function getPolyfills (targets, includes, { ignoreBrowserslistConfig, configPath }) {
17-
const { isPluginRequired } = require('@babel/preset-env')
18-
const builtInsList = require('core-js-compat/data')
19-
const getTargets = require('@babel/preset-env/lib/targets-parser').default
20-
const builtInTargets = getTargets(targets, {
21-
ignoreBrowserslistConfig,
22-
configPath
23-
})
17+
const getTargets = require('@babel/helper-compilation-targets').default
18+
const builtInTargets = getTargets(targets, { ignoreBrowserslistConfig, configPath })
19+
20+
// if no targets specified, include all default polyfills
21+
if (!targets && !Object.keys(builtInTargets).length) {
22+
return includes
23+
}
2424

25-
return includes.filter(item => {
26-
return isPluginRequired(builtInTargets, builtInsList[item])
27-
})
25+
const { list } = require('core-js-compat')({ targets: builtInTargets })
26+
return includes.filter(item => list.includes(item))
2827
}
2928

3029
module.exports = (context, options = {}) => {
@@ -53,6 +52,7 @@ module.exports = (context, options = {}) => {
5352
}
5453

5554
const runtimePath = path.dirname(require.resolve('@babel/runtime/package.json'))
55+
const runtimeVersion = require('@babel/runtime/package.json').version
5656
const {
5757
polyfills: userPolyfills,
5858
loose = false,
@@ -78,7 +78,13 @@ module.exports = (context, options = {}) => {
7878
// However, this may cause hash inconsistency if the project is moved to another directory.
7979
// So here we allow user to explicit disable this option if hash consistency is a requirement
8080
// and the runtime version is sure to be correct.
81-
absoluteRuntime = runtimePath
81+
absoluteRuntime = runtimePath,
82+
83+
// https://babeljs.io/docs/en/babel-plugin-transform-runtime#version
84+
// By default transform-runtime assumes that @babel/runtime@7.0.0-beta.0 is installed, which means helpers introduced later than 7.0.0-beta.0 will be inlined instead of imported.
85+
// See https://github.com/babel/babel/issues/10261
86+
// And https://github.com/facebook/docusaurus/pull/2111
87+
version = runtimeVersion
8288
} = options
8389

8490
// resolve targets
@@ -167,7 +173,7 @@ module.exports = (context, options = {}) => {
167173
decoratorsBeforeExport,
168174
legacy: decoratorsLegacy !== false
169175
}],
170-
[require('@babel/plugin-proposal-class-properties'), { loose }],
176+
[require('@babel/plugin-proposal-class-properties'), { loose }]
171177
)
172178

173179
// transform runtime, but only for helpers
@@ -180,7 +186,9 @@ module.exports = (context, options = {}) => {
180186
helpers: useBuiltIns === 'usage',
181187
useESModules: !process.env.VUE_CLI_BABEL_TRANSPILE_MODULES,
182188

183-
absoluteRuntime
189+
absoluteRuntime,
190+
191+
version
184192
}])
185193

186194
return {

packages/@vue/babel-preset-app/package.json

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/babel-preset-app",
3-
"version": "4.1.2",
3+
"version": "4.2.0",
44
"description": "babel-preset-app for vue-cli",
55
"main": "index.js",
66
"publishConfig": {
@@ -22,19 +22,20 @@
2222
},
2323
"homepage": "https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/babel-preset-app#readme",
2424
"dependencies": {
25-
"@babel/core": "^7.7.4",
26-
"@babel/helper-module-imports": "^7.7.4",
27-
"@babel/plugin-proposal-class-properties": "^7.7.4",
28-
"@babel/plugin-proposal-decorators": "^7.7.4",
29-
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
30-
"@babel/plugin-syntax-jsx": "^7.7.4",
31-
"@babel/plugin-transform-runtime": "^7.7.4",
32-
"@babel/preset-env": "^7.7.4",
33-
"@babel/runtime": "^7.7.4",
25+
"@babel/core": "^7.8.4",
26+
"@babel/helper-compilation-targets": "^7.8.4",
27+
"@babel/helper-module-imports": "^7.8.3",
28+
"@babel/plugin-proposal-class-properties": "^7.8.3",
29+
"@babel/plugin-proposal-decorators": "^7.8.3",
30+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
31+
"@babel/plugin-syntax-jsx": "^7.8.3",
32+
"@babel/plugin-transform-runtime": "^7.8.3",
33+
"@babel/preset-env": "^7.8.4",
34+
"@babel/runtime": "^7.8.4",
3435
"@vue/babel-preset-jsx": "^1.1.2",
35-
"babel-plugin-dynamic-import-node": "^2.2.0",
36-
"core-js": "^3.4.4",
37-
"core-js-compat": "^3.4.4"
36+
"babel-plugin-dynamic-import-node": "^2.3.0",
37+
"core-js": "^3.6.4",
38+
"core-js-compat": "^3.6.4"
3839
},
3940
"peerDependencies": {
4041
"@babel/core": "*"

packages/@vue/cli-init/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-init",
3-
"version": "4.1.2",
3+
"version": "4.2.0",
44
"description": "init addon for vue-cli",
55
"main": "index.js",
66
"publishConfig": {

packages/@vue/cli-overlay/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-overlay",
3-
"version": "4.1.2",
3+
"version": "4.2.0",
44
"description": "error overlay & dev server middleware for vue-cli",
55
"main": "dist/client.js",
66
"files": [

0 commit comments

Comments
 (0)