Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use browser-sync instead of docsify-cli to serve docs on local #157

Merged
merged 3 commits into from
May 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

- Add [documentation of fragmented list](https://marpit.marp.app/fragmented-list) ([#152](https://github.com/marp-team/marpit/pull/152))

### Changed

- Use browser-sync instead of docsify-cli to serve docs on local ([#157](https://github.com/marp-team/marpit/pull/157))

### Removed

- Drop support for Node 6.x ([#139](https://github.com/marp-team/marpit/issues/139), [#155](https://github.com/marp-team/marpit/pull/155))
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"check-audit": "yarn --mutex file audit",
"clean": "rimraf lib",
"docs": "npm-run-all --npm-path yarn --parallel docsify docsify:style:watch",
"docsify": "docsify serve ./docs",
"docsify": "browser-sync start -s docs -f \"docs/**/*\" --single --no-open",
"docsify:style": "node ./docsify/build.js",
"docsify:style:watch": "nodemon -q -e .scss,.js -w ./docsify ./docsify/build.js",
"format": "prettier \"**/*.{css,html,js,json,md,scss,ts,yaml,yml}\"",
Expand All @@ -66,12 +66,12 @@
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.0",
"browser-sync": "^2.26.5",
"cheerio": "^1.0.0-rc.2",
"codecov": "^3.3.0",
"cross-env": "^5.2.0",
"cssnano": "^4.1.10",
"dedent": "^0.7.0",
"docsify-cli": "^4.3.0",
"docsify-themeable": "^0.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "13.1.0",
Expand Down
Loading