Skip to content

Commit 99a06d1

Browse files
committed
v3.6.0
1 parent eefe9f3 commit 99a06d1

File tree

23 files changed

+119
-72
lines changed

23 files changed

+119
-72
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
2+
## Unreleased (2019-04-13)
3+
4+
#### :rocket: New Feature
5+
* `@vue/cli-ui`
6+
* [#3688](https://github.com/vuejs/vue-cli/pull/3688) feat(ui): add copyContent to clipboard button on terminal component ([@pikax](https://github.com/pikax))
7+
* `@vue/cli-service`
8+
* [#3703](https://github.com/vuejs/vue-cli/pull/3703) feat(cli-service): add --filename option to specify the output file name ([@NickeyLin](https://github.com/NickeyLin))
9+
* [#3760](https://github.com/vuejs/vue-cli/pull/3760) feat: bundle currentScript polyfill by default if library needs IE support ([@sodatea](https://github.com/sodatea))
10+
* [#3595](https://github.com/vuejs/vue-cli/pull/3595) feat: support multi-main entry in pages config ([@sodatea](https://github.com/sodatea))
11+
* [#3663](https://github.com/vuejs/vue-cli/pull/3663) feat: support pug as html template ([@sodatea](https://github.com/sodatea))
12+
* `@vue/cli`
13+
* [#3568](https://github.com/vuejs/vue-cli/pull/3568) feat(cli): Added makeJSOnlyValue to generator API. Provides convenien… ([@steveworkman](https://github.com/steveworkman))
14+
* [#3643](https://github.com/vuejs/vue-cli/pull/3643) feat: do not write undefined fields to config files ([@sodatea](https://github.com/sodatea))
15+
* `@vue/cli-service`, `@vue/cli-shared-utils`, `@vue/cli-ui`, `@vue/cli`
16+
* [#1531](https://github.com/vuejs/vue-cli/pull/1531) feat: support PNPM as a package manager ([@robertkruis](https://github.com/robertkruis))
17+
* `@vue/cli-plugin-eslint`, `@vue/cli-service`
18+
* [#3572](https://github.com/vuejs/vue-cli/pull/3572) Add 3rd option to `lintOnSave` to support 'default' behaviour (Closes [#3552](https://github.com/vuejs/vue-cli/issues/3552)) ([@LinusBorg](https://github.com/LinusBorg))
19+
* `@vue/cli-plugin-unit-jest`
20+
* [#3589](https://github.com/vuejs/vue-cli/pull/3589) feat: add jest typeahead plugin ([@sodatea](https://github.com/sodatea))
21+
22+
#### :bug: Bug Fix
23+
* `@vue/cli-service`, `@vue/cli-shared-utils`, `@vue/cli-ui`, `@vue/cli`
24+
* [#3790](https://github.com/vuejs/vue-cli/pull/3790) fix pnpm compatibility issues during scaffolding ([@sodatea](https://github.com/sodatea))
25+
26+
#### :house: Internal
27+
* `@vue/cli-service`
28+
* [#2405](https://github.com/vuejs/vue-cli/pull/2405) refactor: remove unused `placeAtRootIfRelative` parameter ([@dailyvuejs](https://github.com/dailyvuejs))
29+
* [#3707](https://github.com/vuejs/vue-cli/pull/3707) chore: more accurate vim swap file ignore ([@Newbrict](https://github.com/Newbrict))
30+
* [#3709](https://github.com/vuejs/vue-cli/pull/3709) chore: use high resolution version of favicon.ico ([@phanan](https://github.com/phanan))
31+
* [#3628](https://github.com/vuejs/vue-cli/pull/3628) feat: make `fibers` opt-in for dart sass ([@sodatea](https://github.com/sodatea))
32+
* Other
33+
* [#3650](https://github.com/vuejs/vue-cli/pull/3650) workflow: use lerna-changelog ([@sodatea](https://github.com/sodatea))
34+
35+
#### Committers: 10
36+
- Carlos Rodrigues ([@pikax](https://github.com/pikax))
37+
- Dimitar Dimitrov ([@Newbrict](https://github.com/Newbrict))
38+
- Guillaume Chau ([@Akryum](https://github.com/Akryum))
39+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
40+
- Nick ([@NickeyLin](https://github.com/NickeyLin))
41+
- Phan An ([@phanan](https://github.com/phanan))
42+
- Steve Workman ([@steveworkman](https://github.com/steveworkman))
43+
- Thorsten Lünborg ([@LinusBorg](https://github.com/LinusBorg))
44+
- [@dailyvuejs](https://github.com/dailyvuejs)
45+
- [@robertkruis](https://github.com/robertkruis)
46+
47+
148
# [3.5.5](https://github.com/vuejs/vue-cli/compare/v3.5.4...v3.5.5) (2019-04-01)
249

350
## babel-preset-app

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": false,
4-
"version": "3.5.5",
4+
"version": "3.6.0",
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": "3.5.5",
3+
"version": "3.6.0",
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": "3.5.1",
3+
"version": "3.6.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": "3.5.1",
3+
"version": "3.6.0",
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": "3.5.5",
3+
"version": "3.6.0",
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.0.0",
24-
"@vue/babel-preset-app": "^3.5.5",
25-
"@vue/cli-shared-utils": "^3.5.1",
24+
"@vue/babel-preset-app": "^3.6.0",
25+
"@vue/cli-shared-utils": "^3.6.0",
2626
"babel-loader": "^8.0.5",
2727
"webpack": ">=4 < 4.29"
2828
},

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": "3.5.1",
3+
"version": "3.6.0",
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": "^3.5.1",
26+
"@vue/cli-shared-utils": "^3.6.0",
2727
"cypress": "^3.2.0",
2828
"eslint-plugin-cypress": "^2.2.1"
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": "3.5.1",
3+
"version": "3.6.0",
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": "^3.5.1",
26+
"@vue/cli-shared-utils": "^3.6.0",
2727
"chromedriver": "^2.46.0",
2828
"deepmerge": "^3.2.0",
2929
"execa": "^1.0.0",

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": "3.5.1",
3+
"version": "3.6.0",
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": "^3.5.1",
26+
"@vue/cli-shared-utils": "^3.6.0",
2727
"babel-eslint": "^10.0.1",
2828
"eslint-loader": "^2.1.2",
2929
"globby": "^9.2.0",

packages/@vue/cli-plugin-pwa/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-pwa",
3-
"version": "3.5.1",
3+
"version": "3.6.0",
44
"description": "pwa 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": "^3.5.1",
26+
"@vue/cli-shared-utils": "^3.6.0",
2727
"webpack": ">=4 < 4.29",
2828
"workbox-webpack-plugin": "^3.6.3"
2929
},

0 commit comments

Comments
 (0)