From 0d4a75475adaf9889c38d77482b36490849e1c28 Mon Sep 17 00:00:00 2001 From: REJack Date: Sat, 19 Oct 2019 11:32:35 +0200 Subject: [PATCH] changed package.json docs scripts --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d9dba98cf..ca1282308 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/adminlte.min.css dist/css/adminlte.css", "compile": "npm-run-all --parallel js css", "dev": "npm-run-all --parallel watch sync", + "docs": "npm-run-all --sequential docs-clean docs-prepare docs-compile", "docs-clean": "cd docs/ && bundle exec jekyll clean -d ../docs_html", "docs-compile": "cd docs/ && bundle exec jekyll build -d ../docs_html", "docs-serve": "cd docs/ && bundle exec jekyll serve", @@ -21,7 +22,7 @@ "js-compile": "rollup --config build/config/rollup.config.js --sourcemap", "js-minify": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/adminlte.js.map,includeSources,url=adminlte.min.js.map\" --output dist/js/adminlte.min.js dist/js/adminlte.js", "production": "npm-run-all --sequential compile plugins", - "prepare-release": "npm-run-all --sequential compile plugins docs-clean docs-compile", + "prepare-release": "npm-run-all --sequential compile plugins docs", "plugins": "node build/npm/Publish.js -v", "sync": "browser-sync start --server --files *.html pages/ dist/", "watch": "npm-run-all --parallel watch-css watch-js",