Skip to content

Commit 512b48f

Browse files
committed
chore: build document.
1 parent 4f9a02e commit 512b48f

File tree

2 files changed

+41
-3
lines changed

2 files changed

+41
-3
lines changed

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,26 @@
1+
dist
2+
node_modules
3+
test/out
4+
5+
npm-debug.log*
6+
lerna-debug.log
7+
yarn-error.log
8+
package-lock.json
9+
110
.DS_Store
11+
.cache
12+
.vscode
13+
.idea
14+
15+
*.bak
16+
*.tem
17+
*.temp
18+
#.swp
19+
*.*~
20+
~*.*
21+
22+
# IDEA
23+
*.iml
24+
*.ipr
25+
*.iws
26+
.idea/

package.json

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,25 @@
11
{
2+
"version": "1.0.0",
3+
"title": "Go语言快速入门",
4+
"scripts": {
5+
"start": "idoc --watch",
6+
"build": "idoc"
7+
},
28
"markdown-to-html": {
39
"github-corners": "https://github.com/jaywcjlove/golang-tutorial",
410
"document": {
511
"title": "Go 语言快速入门",
612
"meta": [
7-
{ "description": "通过简单的例子,来快速入门Go语言基础编程、语法等各种语言特性,主要面向新手级别的学习者。" },
8-
{ "keywords": "golang,tutorial,go,golang-tutorial" }
13+
{
14+
"description": "通过简单的例子,来快速入门Go语言基础编程、语法等各种语言特性,主要面向新手级别的学习者。"
15+
},
16+
{
17+
"keywords": "golang,tutorial,go,golang-tutorial"
18+
}
919
]
1020
}
21+
},
22+
"devDependencies": {
23+
"idoc": "^1.21.4"
1124
}
12-
}
25+
}

0 commit comments

Comments
 (0)