-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
) Breaking changes: - Plugin option`enhanceDevServer` was removed. New plugin option API: - beforeDevServer - afterDevServer
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = require('@vuepress/core') |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "vuepress", | ||
"version": "1.0.0-alpha.32", | ||
"description": "Minimalistic doc generator with Vue component based layout system", | ||
"main": "vuepress.js", | ||
"main": "index.js", | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
x8x
Contributor
|
||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git" | ||
|
@@ -13,7 +13,7 @@ | |
"generator" | ||
], | ||
"bin": { | ||
"vuepress": "vuepress.js" | ||
"vuepress": "cli.js" | ||
}, | ||
"author": "Evan You", | ||
"maintainers": [ | ||
|
index.js
shouldn't becli.js
?