Skip to content

Commit d8e6ecc

Browse files
authored
Merge pull request #815 from vuejs/next
VuePress Next Alpha
2 parents 2bf6bb9 + 102852c commit d8e6ecc

File tree

364 files changed

+8240
-1845
lines changed

Some content is hidden

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

364 files changed

+8240
-1845
lines changed

.babelrc

-9
This file was deleted.

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
node_modules
33
*.log
44
.temp
5-
vuepress
65
TODOs.md
6+
vuepress
7+
packages/blog-example

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010
<a href="https://www.npmjs.com/package/vuepress"><img src="https://img.shields.io/npm/l/vuepress.svg" alt="License"></a>
1111
</p>
1212

13+
> This is the branch for `VuePress 1.0`.
14+
15+
## Status: alpha
16+
17+
Certain combinations of plugins may not work properly, and things may change or break until we reach beta phase. Do not use in production yet unless you are adventurous.
18+
1319
# VuePress
1420

1521
> Minimalistic docs generator with Vue component based layout system
@@ -78,8 +84,11 @@ Websites built with VuePress:
7884

7985
VuePress is still a work in progress. There are a few things that it currently does not support but are planned:
8086

81-
- Plugin support
82-
- Blogging support
87+
- Migrate the old test.
88+
- `@vuepress/plugin-test-utils`.
89+
- `once` option for plugin options, which allows the same plugin only to be applied only once.
90+
- `theme` name shortcut.
91+
- `@vuepress/theme-blog`
8392

8493
Contributions are welcome!
8594

__mocks__/@org/vuepress-plugin-a.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}

__mocks__/@org/vuepress-plugin-b.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}

__mocks__/@vuepress/plugin-a.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}

__mocks__/@vuepress/theme-a/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}

__mocks__/vuepress-plugin-a.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}

__mocks__/vuepress-plugin-b.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
multiple: true
3+
}

__mocks__/vuepress-theme-a/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}

babel.config.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = {
2+
'env': {
3+
'test': {
4+
'presets': [
5+
['@babel/preset-env', { 'targets': { 'node': 'current' }}]
6+
]
7+
}
8+
}
9+
}

bin/vuepress.js

-110
This file was deleted.

lerna.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"lerna": "2.5.1",
3+
"npmClient": "yarn",
4+
"useWorkspaces": true,
5+
"version": "1.0.0"
6+
}

lib/app/clientEntry.js

-74
This file was deleted.

lib/app/components/Content.js

-17
This file was deleted.

lib/app/dataMixin.js

-90
This file was deleted.

lib/app/root-mixins/index.js

-7
This file was deleted.

lib/app/serverEntry.js

-14
This file was deleted.

0 commit comments

Comments
 (0)