10000 v5.0.0-alpha.8 · vuejs/vue-cli@89af6c5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 89af6c5

Browse files
committed
v5.0.0-alpha.8
1 parent a5f822c commit 89af6c5

File tree

26 files changed

+91
-65
lines changed

26 files changed

+91
-65
lines changed

CHANGELOG.md

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

2+
## 5.0.0-alpha.8 (2021-03-24)
3+
4+
#### :rocket: New Features
5+
* `@vue/cli-plugin-babel`, `@vue/cli-service`
6+
* [#6354](https://github.com/vuejs/vue-cli/pull/6354) feat: when `transpileDependencies` is set to `true`, transpile all dependencies in `node_modules` ([@sodatea](https://github.com/sodatea))
7+
* `@vue/cli-service`
8+
* [#6355](https://github.com/vuejs/vue-cli/pull/6355) feat: a `defineConfig` API from `@vue/cli-service` for better typing support in `vue.config.js` ([@sodatea](https://github.com/sodatea))
9+
10+
#### :boom: Breaking Changes
11+
* `@vue/cli-service`
12+
* [#6348](https://github.com/vuejs/vue-cli/pull/6348) chore!: bump copy-webpack-plugin to v8 ([@sodatea](https://github.com/sodatea))
13+
* `@vue/cli-plugin-unit-jest`
14+
* [#6347](https://github.com/vuejs/vue-cli/pull/6347) refactor!: move vue-jest and ts-jest to peer dependencies ([@sodatea](https://github.com/sodatea))
15+
16+
#### :bug: Bug Fix
17+
* `@vue/cli-service`
18+
* [#6372](https://github.com/vuejs/vue-cli/pull/6372) fix: check hoisted postcss version ([@sodatea](https://github.com/sodatea))
19+
* [#6358](https://github.com/vuejs/vue-cli/pull/6358) fix: work around npm6/postcss8 hoisting issue ([@sodatea](https://github.com/sodatea))
20+
* [#6366](https://github.com/vuejs/vue-cli/pull/6366) fix(build): demo-lib.html compatible Vue 3 ([@jeneser](https://github.com/jeneser))
21+
22+
#### Committers: 4
23+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
24+
- Péter Gaál ([@petergaal91](https://github.com/petergaal91))
25+
- Yazhe Wang ([@jeneser](https://github.com/jeneser))
26+
- zoomdong ([@fireairforce](https://github.com/fireairforce))
27+
28+
29+
230
## 5.0.0-alpha.7 (2021-03-11)
331

432
#### :bug: Bug Fix

docs/core-plugins/babel.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66

77
Uses Babel 7 + `babel-loader` + [@vue/babel-preset-app](https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/babel-preset-app) by default, but can be configured via `babel.config.js` to use any other Babel presets or plugins.
88

9-
By default, `babel-loader` excludes files inside `node_modules` dependencies. You can enable the `transpileDependencies` option in `vue.config.js` to transpile the dependencies. Or, if you want to only transpile some of the dependency modules, you can pass an array to the `transpileDependencies` option:
9+
By default, `babel-loader` excludes files inside `node_modules` dependencies. If you wish to explicitly transpile a dependency module, you will need to add it to the `transpileDependencies` option in `vue.config.js`:
1010

1111
``` js
1212
module.exports = {
13-
// Set to `true` to transpile all dependencies.
14-
// Or pass an array to transpile selectively.
1513
transpileDependencies: [
1614
// can be string or regex
1715
'my-dep',

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": "5.0.0-alpha.7",
4+
"version": "5.0.0-alpha.8",
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": "5.0.0-alpha.7",
3+
"version": "5.0.0-alpha.8",
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": "5.0.0-alpha.7",
3+
"version": "5.0.0-alpha.8",
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": "5.0.0-alpha.7",
3+
"version": "5.0.0-alpha.8",
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": "5.0.0-alpha.7",
3+
"version": "5.0.0-alpha.8",
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.12.16",
24-
"@vue/babel-preset-app": "^5.0.0-alpha.7",
25-
"@vue/cli-shared-utils": "^5.0.0-alpha.7",
24+
"@vue/babel-preset-app": "^5.0.0-alpha.8",
25+
"@vue/cli-shared-utils": "^5.0.0-alpha.8",
2626
"babel-loader": "^8.2.2",
2727
"thread-loader": "^3.0.0",
2828
"webpack": "^5.22.0"

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": "5.0.0-alpha.7",
3+
"version": "5.0.0-alpha.8",
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": "^5.0.0-alpha.7",
26+
"@vue/cli-shared-utils": "^5.0.0-alpha.8",
2727
"cypress": "^6.5.0",
2828
"eslint-plugin-cypress": "^2.11.2"
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": "5.0.0-alpha.7",
3+
"version": "5.0.0-alpha.8",
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": "^5.0.0-alpha.7",
26+
"@vue/cli-shared-utils": "^5.0.0-alpha.8",
2727
"deepmerge": "^4.2.2",
2828
"nightwatch": "^1.4.1"
2929
},

packages/@vue/cli-plugin-e2e-webdriverio/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-webdriverio",
3-
"version": "5.0.0-alpha.7",
3+
"version": "5.0.0-alpha.8",
44
"description": "e2e-webdriverio plugin for vue-cli",
55
"main": "index.js",
66
"repository": {
@@ -26,7 +26,7 @@
2626
},
2727
"dependencies": {
2828
"@types/mocha": "^8.2.1",
29-
"@vue/cli-shared-utils": "^5.0.0-alpha.7",
29+
"@vue/cli-shared-utils": "^5.0.0-alpha.8",
3030
"@wdio/cli": "^7.0.7",
3131
"@wdio/local-runner": "^7.0.7",
3232
"@wdio/mocha-framework": "^7.0.7",

0 commit comments

Comments
 (0)
0