Skip to content

Commit 34f303b

Browse files
committed
v4.4.1
1 parent 36b475c commit 34f303b

File tree

25 files changed

+80
-84
lines changed

25 files changed

+80
-84
lines changed

CHANGELOG.md

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

2+
## 4.4.1 (2020-05-25)
3+
4+
#### :bug: Bug Fix
5+
* `@vue/babel-preset-app`
6+
* [#5513](https://github.com/vuejs/vue-cli/pull/5513) refactor: improve the polyfill importing logic of modern mode ([@sodatea](https://github.com/sodatea))
7+
* `@vue/cli`
8+
* [#5502](https://github.com/vuejs/vue-cli/pull/5502) fix(cli): fix the creation log ([@sodatea](https://github.com/sodatea))
9+
10+
#### :memo: Documentation
11+
* [#5408](https://github.com/vuejs/vue-cli/pull/5408) docs: explain pwa head/manifest icons ([@DRBragg](https://github.com/DRBragg))
12+
13+
#### :house: Internal
14+
* `@vue/babel-preset-app`
15+
* [#5513](https://github.com/vuejs/vue-cli/pull/5513) refactor: improve the polyfill importing logic of modern mode ([@sodatea](https://github.com/sodatea))
16+
17+
#### Committers: 3
18+
- Alexander Sokolov ([@Alex-Sokolov](https://github.com/Alex-Sokolov))
19+
- Drew Bragg ([@DRBragg](https://github.com/DRBragg))
20+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
21+
22+
23+
224
## 4.4.0 (2020-05-19)
325

426
#### :rocket: New Features

docs/core-plugins/pwa.md

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -83,30 +83,6 @@ file, or the `"vue"` field in `package.json`.
8383
- start_url: `'.'`
8484
- display: `'standalone'`
8585
- theme_color: `pwa.themeColor`
86-
- icons: `[
87-
{
88-
'src': './img/icons/android-chrome-192x192.png',
89-
'sizes': '192x192',
90-
'type': 'image/png'
91-
},
92-
{
93-
'src': './img/icons/android-chrome-512x512.png',
94-
'sizes': '512x512',
95-
'type': 'image/png'
96-
},
97-
{
98-
'src': './img/icons/android-chrome-maskable-192x192.png',
99-
'sizes': '192x192',
100-
'type': 'image/png',
101-
'purpose': 'maskable'
102-
},
103-
{
104-
'src': './img/icons/android-chrome-maskable-512x512.png',
105-
'sizes': '512x512',
106-
'type': 'image/png',
107-
'purpose': 'maskable'
108-
}
109-
]`
11086

11187
- **pwa.iconPaths**
11288

@@ -124,8 +100,6 @@ file, or the `"vue"` field in `package.json`.
124100

125101
Change these values to use different paths for your icons.
126102

127-
*NOTE:* These icons are only used to generate the meta tags in the `<head>` of your HTML doc. To change the icon paths for your manifest please use `pwa.manifestOptions.icons`
128-
129103
### Example Configuration
130104

131105
```js

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.4.0",
4+
"version": "4.4.1",
55
"packages": [
66
"packages/@vue/babel-preset-app",
77
"packages/@vue/cli*",

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

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

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.4.0",
3+
"version": "4.4.1",
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.4.0",
3+
"version": "4.4.1",
44
"description": "error overlay & dev server middleware for vue-cli",
55
"main": "dist/client.js",
66
"files": [

packages/@vue/cli-plugin-babel/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-plugin-babel",
3-
"version": "4.4.0",
3+
"version": "4.4.1",
44
"description": "babel plugin for vue-cli",
55
"main": "index.js",
66
"repository": {
@@ -21,8 +21,8 @@
2121
"homepage": "https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-plugin-babel#readme",
2222
"dependencies": {
2323
"@babel/core": "^7.9.6",
24-
"@vue/babel-preset-app": "^4.4.0",
25-
"@vue/cli-shared-utils": "^4.4.0",
24+
"@vue/babel-preset-app": "^4.4.1",
25+
"@vue/cli-shared-utils": "^4.4.1",
2626
"babel-loader": "^8.1.0",
2727
"cache-loader": "^4.1.0",
2828
"thread-loader": "^2.1.3",

packages/@vue/cli-plugin-e2e-cypress/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-plugin-e2e-cypress",
3-
"version": "4.4.0",
3+
"version": "4.4.1",
44
"description": "e2e-cypress plugin for vue-cli",
55
"main": "index.js",
66
"repository": {
@@ -23,7 +23,7 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"@vue/cli-shared-utils": "^4.4.0",
26+
"@vue/cli-shared-utils": "^4.4.1",
2727
"cypress": "^3.8.3",
2828
"eslint-plugin-cypress": "^2.10.3"
2929
},

packages/@vue/cli-plugin-e2e-nightwatch/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-plugin-e2e-nightwatch",
3-
"version": "4.4.0",
3+
"version": "4.4.1",
44
"description": "e2e-nightwatch plugin for vue-cli",
55
"main": "index.js",
66
"repository": {
@@ -23,7 +23,7 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"@vue/cli-shared-utils": "^4.4.0",
26+
"@vue/cli-shared-utils": "^4.4.1",
2727
"deepmerge": "^4.2.2",
2828
"nightwatch": "^1.3.5"
2929
},

packages/@vue/cli-plugin-eslint/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-plugin-eslint",
3-
"version": "4.4.0",
3+
"version": "4.4.1",
44
"description": "eslint plugin for vue-cli",
55
"main": "index.js",
66
"repository": {
@@ -23,7 +23,7 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"@vue/cli-shared-utils": "^4.4.0",
26+
"@vue/cli-shared-utils": "^4.4.1",
2727
"eslint-loader": "^2.2.1",
2828
"globby": "^9.2.0",
2929
"inquirer": "^7.1.0",

0 commit comments

Comments
 (0)