Skip to content
This repository was archived by the owner on Mar 15, 2021. It is now read-only.

Commit 21568b3

Browse files
author
f3ltron
committed
fix: 🐛 add readme.md
1 parent 12e898f commit 21568b3

File tree

5 files changed

+652
-619
lines changed

5 files changed

+652
-619
lines changed

Diff for: lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
],
1616
"useWorkspaces": true,
1717
"npmClient": "yarn",
18-
"version": "1.2.3"
18+
"version": "1.2.4"
1919
}

Diff for: package.json

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vuepres-plugin-docgen",
3-
"version": "1.2.3",
3+
"version": "1.2.4",
44
"description": "vuepress, component doc generation",
55
"repository": "https://github.com/f3ltron/vuepress-plugin-docgen",
66
"author": "f3ltron",
@@ -28,14 +28,6 @@
2828
"bugs": {
2929
"url": "https://github.com/f3ltron/vuepress-plugin-docgen/issues"
3030
},
31-
"husky": {
32-
"hooks": {
33-
"commit-msg": "[[ -n $HUSKY_BYPASS ]] || commitlint -E HUSKY_GIT_PARAMS"
34-
}
35-
},
36-
"commitlint": {
37-
"extends": ["@commitlint/config-conventional"]
38-
},
3931
"homepage": "https://f3ltron.github.io/vuepress-plugin-docgen/",
4032
"devDependencies": {
4133
"@commitlint/cli": "^8.0.0",

Diff for: packages/vuepress-plugin-docgen/.npmignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
test
21
node_modules

Diff for: packages/vuepress-plugin-docgen/readme.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/)
2+
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
3+
[![Build Status](https://travis-ci.com/f3ltron/vuepress-plugin-docgen.svg?branch=master)](https://travis-ci.com/f3ltron/vuepress-plugin-docgen)
4+
5+
# vuepress-plugin-docgen
6+
7+
> Vuepress plugin for creating a documentation site of your Vue components
8+
9+
## fast installation
10+
11+
`yarn add -D vuepress-plugin-docgen`
12+
13+
14+
vuepress config file
15+
16+
```jsx
17+
plugins: [
18+
[ 'docgen',
19+
{
20+
componentsDir: path.join(__dirname, '../../components')
21+
}
22+
]
23+
]
24+
```
25+
26+
## documentation more infos [click here](https://f3ltron.github.io/vuepress-plugin-docgen/)
27+
28+
## License
29+
30+
MIT © f3ltron

0 commit comments

Comments
 (0)