diff options
| author | XhmikosR <[email protected]> | 2018-07-12 09:43:15 +0300 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2018-07-12 00:06:12 -0700 |
| commit | a49f5cab6fb2e106113e5ab59fdcecc7f9349301 (patch) | |
| tree | 94cc777d2656f11fc6a9c6cb0e8a2022d690d902 | |
| parent | 6589408a4b91c0f58fa4ac1508d69e3e9e4345e1 (diff) | |
| download | bootstrap-a49f5cab6fb2e106113e5ab59fdcecc7f9349301.tar.xz bootstrap-a49f5cab6fb2e106113e5ab59fdcecc7f9349301.zip | |
Clean up npm scripts a bit more.
`docs-serve` was duplicated. Also, extend the existent `docs-serve` script for `docs-github-serve`.
| -rw-r--r-- | package.json | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package.json b/package.json index fc6756d38..d7cb8f745 100644 --- a/package.json +++ b/package.json @@ -59,10 +59,9 @@ "coveralls": "shx cat js/coverage/lcov.info | coveralls", "docs": "npm-run-all --parallel css-docs js-docs --sequential docs-compile docs-lint", "docs-compile": "bundle exec jekyll build", - "docs-serve": "bundle exec jekyll serve", "postdocs-compile": "npm run docs-workbox-precache", "docs-github": "shx echo \"github: true\" > twbsconfig.yml && npm run docs-compile -- --config _config.yml,twbsconfig.yml && shx rm ./twbsconfig.yml", - "docs-github-serve": "bundle exec jekyll serve --skip-initial-build --no-watch", + "docs-github-serve": "npm run docs-serve -- --skip-initial-build --no-watch", "docs-lint": "npm-run-all docs-lint-*", "docs-lint-htmllint": "htmllint --rc build/.htmllintrc \"_gh_pages/**/*.html\" \"js/tests/**/*.html\"", "docs-lint-vnu-jar": "node build/vnu-jar.js", |
