Skip to content

Commit 6d723aa

Browse files
committed
Release 4.0.0-beta12
2 parents df477c4 + 497bc28 commit 6d723aa

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## Vuedoc Parser 4.0.0-beta12
2+
3+
This release fixes the plugins section on the README documentation.
4+
5+
## Vuedoc Parser 4.0.0-beta11
6+
7+
This release fixes packaging by adding the missing `@vuedoc/parser/test-utils`
8+
module.
9+
110
## Vuedoc Parser 4.0.0-beta10
211

312
This release introduces Vuedoc Plugins and many other new features and

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1261,17 +1261,17 @@ Vuedoc can be extended using plugins.
12611261

12621262
To use a plugin, it needs to be added to the `devDependencies` of the project
12631263
and included in the plugins array `options.plugins`. For example, to provide
1264-
support of Vue Router, the official [`@vuedoc/vue-router-plugin`](https://gitlab.com/vuedoc/vue-router-plugin)
1264+
support of Vue Router, the official [`@vuedoc/plugin-vue-router`](https://gitlab.com/vuedoc/plugin-vue-router)
12651265
can be used:
12661266

12671267
```sh
1268-
$ npm add -D @vuedoc/vue-router-plugin
1268+
$ npm add -D @vuedoc/plugin-vue-router
12691269
```
12701270

12711271
```js
12721272
// main.js
12731273
import { parseComponent } from '@vuedoc/parser';
1274-
import { VueRouterPlugin } from '@vuedoc/vue-router-plugin';
1274+
import { VueRouterPlugin } from '@vuedoc/plugin-vue-router';
12751275

12761276
const component = await parseComponent({
12771277
plugins: [
@@ -1285,8 +1285,8 @@ const component = await parseComponent({
12851285

12861286
| Name | Description | Documentation |
12871287
| ----------------- | -------------------------------- | -------------------------------------------------------------------------- |
1288-
| Vue Router Plugin | The Vue Router plugin for Vuedoc | [`@vuedoc/vue-router-plugin`](https://gitlab.com/vuedoc/vue-router-plugin) |
1289-
| Vuex Plugin | The Vuex plugin for Vuedoc | [`@vuedoc/vuex-plugin`](https://gitlab.com/vuedoc/vuex-plugin) |
1288+
| Vue Router Plugin | The Vue Router plugin for Vuedoc | [`@vuedoc/plugin-vue-router`](https://gitlab.com/vuedoc/plugin-vue-router) |
1289+
| Vuex Plugin | The Vuex plugin for Vuedoc | [`@vuedoc/plugin-vuex`](https://gitlab.com/vuedoc/plugin-vuex) |
12901290

12911291
### Building Plugins
12921292

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuedoc/parser",
3-
"version": "4.0.0-beta11",
3+
"version": "4.0.0-beta12",
44
"description": "Generate a JSON documentation for a Vue file",
55
"type": "module",
66
"exports": {

0 commit comments

Comments
 (0)