Skip to content

Commit 017bfe1

Browse files
author
Hyunje Jun
committed
Remove gitbook stuff
1 parent 0ef1050 commit 017bfe1

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ typings/
6060
# Built files
6161
dist
6262

63-
# GitBook
64-
_book
65-
6663
# Test recent request
6764
test/helpers/request.json
6865

CONTRIBUTING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ Also, you may use the following npm scripts for development:
2828
* `npm run format:check`: Silently run `format` and report formatting errors
2929
* `npm run build`: Build TypeScript code into JavaScript. The built files will
3030
be placed in `dist/`.
31-
* `npm run docs`: Build GitBook docs and serve a doc server
32-
+ Please install GitBook first to modify/build documentation: `npm i -g gitbook-cli`
31+
* `npm run docs`: Build and serve documentation
3332

3433
We test, lint and build on CI, but it is always nice to check them before
3534
uploading a pull request.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
"lib"
1414
],
1515
"scripts": {
16-
"docs:dev": "vuepress dev docs",
17-
"docs:build": "vuepress build docs",
1816
"pretest": "npm run build",
1917
"test": "API_BASE_URL=http://localhost:1234/ TEST_PORT=1234 TS_NODE_CACHE=0 nyc mocha",
2018
"prettier": "prettier --parser typescript --trailing-comma all \"{lib,test}/**/*.ts\"",
@@ -23,7 +21,8 @@
2321
"clean": "del-cli dist",
2422
"prebuild": "npm run format:check && npm run clean",
2523
"build": "tsc",
26-
"docs": "gitbook install && gitbook serve docs",
24+
"docs": "vuepress dev docs",
25+
"docs:build": "vuepress build docs",
2726
"docs:publish": "./docs/publish.sh",
2827
"release": "npm run build && npm publish --access public",
2928
"precommit": "npm run format:check",

0 commit comments

Comments
 (0)