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

Lines changed: 0 additions & 9 deletions
This file was deleted.

β€Ž.gitignore

Lines changed: 2 additions & 1 deletion
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

Lines changed: 11 additions & 2 deletions
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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}

β€Ž__mocks__/@vuepress/plugin-a.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}

β€Ž__mocks__/vuepress-plugin-a.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}

β€Ž__mocks__/vuepress-plugin-b.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
multiple: true
3+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {}

β€Žbabel.config.js

Lines changed: 9 additions & 0 deletions
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

Lines changed: 0 additions & 110 deletions
This file was deleted.

β€Žlerna.json

Lines changed: 6 additions & 0 deletions
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

Lines changed: 0 additions & 74 deletions
This file was deleted.

β€Žlib/app/components/Content.js

Lines changed: 0 additions & 17 deletions
This file was deleted.

β€Žlib/app/dataMixin.js

Lines changed: 0 additions & 90 deletions
This file was deleted.

β€Žlib/app/root-mixins/index.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

β€Žlib/app/serverEntry.js

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
Β (0)