Skip to content

Commit 3fb9998

Browse files
committed
build: publish v2.0.0-beta.10
1 parent 5da5d15 commit 3fb9998

File tree

58 files changed

+377
-87
lines changed

Some content is hidden

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

58 files changed

+377
-87
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,33 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.10](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.9...v2.0.0-beta.10) (2021-04-27)
7+
8+
9+
### Bug Fixes
10+
11+
* **bundler-vite:** avoid client code to be optimized or externalized ([f8a088d](https://github.com/vuepress/vuepress-next/commit/f8a088db5f428087a58dec4823627a9e3b447a75))
12+
* **bundler-vite:** disable clearScreen in dev by default ([e7bfe49](https://github.com/vuepress/vuepress-next/commit/e7bfe49d10aa8d3c5121120435ed5076fbe80a27))
13+
* **cli:** do not clean cache and temp on restart ([047a52c](https://github.com/vuepress/vuepress-next/commit/047a52c265db355de3aaa298c14150779e9182f4))
14+
* **client:** implement ClientOnly correctly ([e27872d](https://github.com/vuepress/vuepress-next/commit/e27872d89f1e6894ebc734e2e26c800bea82e162))
15+
* **client:** make hydration work properly (close [#123](https://github.com/vuepress/vuepress-next/issues/123)) ([34a5364](https://github.com/vuepress/vuepress-next/commit/34a5364ad6005e64a3e726296b9b8b73318fcbd4))
16+
* **core:** allow extendsMarkdown to return a promise ([a4be2fd](https://github.com/vuepress/vuepress-next/commit/a4be2fda5952f64da2db6ba837b94bfb4e1315ce))
17+
18+
19+
### Features
20+
21+
* **bundler-vite:** bump vite to 2.2.1 to support cacheDir ([d7f685b](https://github.com/vuepress/vuepress-next/commit/d7f685b5d729d9f8c9f858673355a37cb22fc90e))
22+
* **client:** support custom layout ([c32866d](https://github.com/vuepress/vuepress-next/commit/c32866d769cb5a29fb811fd2f00e06d7b94e1508))
23+
* **markdown:** support externalIcon in config and frontmatter ([#122](https://github.com/vuepress/vuepress-next/issues/122)) ([d1389bc](https://github.com/vuepress/vuepress-next/commit/d1389bc6c0eee3ad2fe83d5636fd293d0710e0fb))
24+
* **plugin-search:** add search plugin (close [#35](https://github.com/vuepress/vuepress-next/issues/35)) ([70bb066](https://github.com/vuepress/vuepress-next/commit/70bb0668c53b984f17bdbf7b95ac8e3258034e73))
25+
* **theme-default:** compat with docsearch and search plugin ([cb00182](https://github.com/vuepress/vuepress-next/commit/cb0018257c2c6b4b21e2add5f73e7213b537fb6f))
26+
* **theme-default:** support pageClass frontmatter (close [#118](https://github.com/vuepress/vuepress-next/issues/118)) ([809d575](https://github.com/vuepress/vuepress-next/commit/809d5750c36662e894be566c0ff53c2f2a700da0))
27+
* **theme-default:** support sidebarDepth ([b79ba90](https://github.com/vuepress/vuepress-next/commit/b79ba90f8e4cb93d76dac1f284131cf618aee784))
28+
29+
30+
31+
32+
633
# [2.0.0-beta.9](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.8...v2.0.0-beta.9) (2021-04-21)
734

835

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": "2.0.0-beta.9",
4+
"version": "2.0.0-beta.10",
55
"command": {
66
"version": {
77
"allowBranch": "main",

packages/@vuepress/bundler-vite/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.10](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.9...v2.0.0-beta.10) (2021-04-27)
7+
8+
9+
### Bug Fixes
10+
11+
* **bundler-vite:** avoid client code to be optimized or externalized ([f8a088d](https://github.com/vuepress/vuepress-next/commit/f8a088db5f428087a58dec4823627a9e3b447a75))
12+
* **bundler-vite:** disable clearScreen in dev by default ([e7bfe49](https://github.com/vuepress/vuepress-next/commit/e7bfe49d10aa8d3c5121120435ed5076fbe80a27))
13+
* **client:** make hydration work properly (close [#123](https://github.com/vuepress/vuepress-next/issues/123)) ([34a5364](https://github.com/vuepress/vuepress-next/commit/34a5364ad6005e64a3e726296b9b8b73318fcbd4))
14+
15+
16+
### Features
17+
18+
* **bundler-vite:** bump vite to 2.2.1 to support cacheDir ([d7f685b](https://github.com/vuepress/vuepress-next/commit/d7f685b5d729d9f8c9f858673355a37cb22fc90e))
19+
20+
21+
22+
23+
624
# [2.0.0-beta.9](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.8...v2.0.0-beta.9) (2021-04-21)
725

826
**Note:** Version bump only for package @vuepress/bundler-vite

packages/@vuepress/bundler-vite/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/bundler-vite",
3-
"version": "2.0.0-beta.9",
3+
"version": "2.0.0-beta.10",
44
"description": "Bundler vite package of VuePress",
55
"keywords": [
66
"vuepress-bundler",
@@ -31,8 +31,8 @@
3131
"@vitejs/plugin-vue": "^1.2.1",
3232
"@vue/compiler-sfc": "^3.0.11",
3333
"@vue/server-renderer": "^3.0.11",
34-
"@vuepress/client": "2.0.0-beta.9",
35-
"@vuepress/core": "2.0.0-beta.9",
34+
"@vuepress/client": "2.0.0-beta.10",
35+
"@vuepress/core": "2.0.0-beta.10",
3636
"@vuepress/shared": "2.0.0-beta.7",
3737
"@vuepress/utils": "2.0.0-beta.8",
3838
"rollup": "^2.45.2",

packages/@vuepress/bundler-webpack/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.10](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.9...v2.0.0-beta.10) (2021-04-27)
7+
8+
9+
### Bug Fixes
10+
11+
* **client:** make hydration work properly (close [#123](https://github.com/vuepress/vuepress-next/issues/123)) ([34a5364](https://github.com/vuepress/vuepress-next/commit/34a5364ad6005e64a3e726296b9b8b73318fcbd4))
12+
13+
14+
15+
16+
617
# [2.0.0-beta.9](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.8...v2.0.0-beta.9) (2021-04-21)
718

819

packages/@vuepress/bundler-webpack/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/bundler-webpack",
3-
"version": "2.0.0-beta.9",
3+
"version": "2.0.0-beta.10",
44
"description": "Bundler webpack package of VuePress",
55
"keywords": [
66
"vuepress-bundler",
@@ -32,8 +32,8 @@
3232
"@types/webpack-env": "^1.16.0",
3333
"@vue/compiler-sfc": "^3.0.11",
3434
"@vue/server-renderer": "^3.0.11",
35-
"@vuepress/client": "2.0.0-beta.9",
36-
"@vuepress/core": "2.0.0-beta.9",
35+
"@vuepress/client": "2.0.0-beta.10",
36+
"@vuepress/core": "2.0.0-beta.10",
3737
"@vuepress/shared": "2.0.0-beta.7",
3838
"@vuepress/utils": "2.0.0-beta.8",
3939
"autoprefixer": "^10.2.5",

packages/@vuepress/cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.10](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.9...v2.0.0-beta.10) (2021-04-27)
7+
8+
9+
### Bug Fixes
10+
11+
* **cli:** do not clean cache and temp on restart ([047a52c](https://github.com/vuepress/vuepress-next/commit/047a52c265db355de3aaa298c14150779e9182f4))
12+
13+
14+
15+
16+
617
# [2.0.0-beta.9](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.8...v2.0.0-beta.9) (2021-04-21)
718

819
**Note:** Version bump only for package @vuepress/cli

packages/@vuepress/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/cli",
3-
"version": "2.0.0-beta.9",
3+
"version": "2.0.0-beta.10",
44
"description": "CLI package of VuePress",
55
"keywords": [
66
"vuepress",
@@ -30,7 +30,7 @@
3030
"clean": "rimraf lib *.tsbuildinfo"
3131
},
3232
"dependencies": {
33-
"@vuepress/core": "2.0.0-beta.9",
33+
"@vuepress/core": "2.0.0-beta.10",
3434
"@vuepress/utils": "2.0.0-beta.8",
3535
"cac": "^6.7.2",
3636
"chokidar": "^3.5.1",

packages/@vuepress/client/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.10](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.9...v2.0.0-beta.10) (2021-04-27)
7+
8+
9+
### Bug Fixes
10+
11+
* **client:** implement ClientOnly correctly ([e27872d](https://github.com/vuepress/vuepress-next/commit/e27872d89f1e6894ebc734e2e26c800bea82e162))
12+
* **client:** make hydration work properly (close [#123](https://github.com/vuepress/vuepress-next/issues/123)) ([34a5364](https://github.com/vuepress/vuepress-next/commit/34a5364ad6005e64a3e726296b9b8b73318fcbd4))
13+
14+
15+
### Features
16+
17+
* **client:** support custom layout ([c32866d](https://github.com/vuepress/vuepress-next/commit/c32866d769cb5a29fb811fd2f00e06d7b94e1508))
18+
19+
20+
21+
22+
623
# [2.0.0-beta.9](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.8...v2.0.0-beta.9) (2021-04-21)
724

825

packages/@vuepress/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/client",
3-
"version": "2.0.0-beta.9",
3+
"version": "2.0.0-beta.10",
44
"description": "Client package of VuePress",
55
"keywords": [
66
"vuepress",

0 commit comments

Comments
 (0)