Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-01-15 18:30:21 +0300
committerGitHub <noreply@github.com>2019-01-15 18:30:21 +0300
commit0828b885637f572fe13e060ccb6d34cdc14122c0 (patch)
treebe6f6e9e4dd538913754d217c6a9298ff3409697 /package.json
parentf1f740be09fd08e06e4766e5bf987a57b5d51b80 (diff)
Fix `js-main` script. (#28057)
Diffstat (limited to 'package.json')
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index 865c375c31..d4d5943ff4 100644
--- a/package.json
+++ b/package.json
@@ -42,7 +42,7 @@
"css-prefix-docs": "postcss --config build/postcss.config.js --replace \"site/docs/**/*.css\" \"site/docs/**/*.css\"",
"js": "npm-run-all js-compile js-minify js-copy",
"js-copy": "cross-env-shell shx mkdir -p site/docs/$npm_package_version_short/dist/ && cross-env-shell shx cp -r dist/js/ site/docs/$npm_package_version_short/dist/",
- "js-main": "npm-run-all js-lint js-compile-main js-minify-main",
+ "js-main": "npm-run-all js-lint js-compile js-minify-main",
"js-docs": "npm-run-all js-lint-docs js-minify-docs",
"js-compile": "npm-run-all --parallel js-compile-* --sequential js-copy",
"js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",