aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2018-08-02 11:28:30 +0300
committerXhmikosR <[email protected]>2018-08-12 21:15:55 +0300
commitb5af1c6eaf2e420040c204f2119f3da287cf6b7c (patch)
tree90f1494965c0cfce804e5bf7481cec25f353a150
parent4317d4fb2dc641709a219eae6c444f38ba78e7f0 (diff)
downloadbootstrap-b5af1c6eaf2e420040c204f2119f3da287cf6b7c.tar.xz
bootstrap-b5af1c6eaf2e420040c204f2119f3da287cf6b7c.zip
Fix paths.
-rw-r--r--package.json4
-rw-r--r--site/docs/4.1/examples/.eslintrc.json2
-rw-r--r--site/docs/4.1/examples/.stylelintrc2
3 files changed, 4 insertions, 4 deletions
diff --git a/package.json b/package.json
index 9af3b111d..1387135dc 100644
--- a/package.json
+++ b/package.json
@@ -30,9 +30,9 @@
"css-copy": "shx mkdir -p site/docs/4.1/dist/ && shx cp -r dist/css/ site/docs/4.1/dist/",
"css-lint": "stylelint --syntax scss \"scss/**/*.scss\"",
"css-lint-docs": "stylelint --syntax scss \"site/docs/4.1/assets/scss/*.scss\" && stylelint \"site/docs/**/*.css\"",
- "css-lint-vars": "node build/lint-vars.js scss/ site/docs/4.1/assets/scss/",
+ "css-lint-vars": "node build/lint-vars.js scss/ site/docs/",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
- "css-prefix-docs": "postcss --config build/postcss.config.js --replace \"site/docs/4.1/assets/css/docs.min.css\" \"site/docs/**/*.css\"",
+ "css-prefix-docs": "postcss --config build/postcss.config.js --replace \"site/docs/**/*.css\" \"site/docs/**/*.css\"",
"css-minify": "cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css",
"css-minify-docs": "cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output site/docs/4.1/assets/css/docs.min.css site/docs/4.1/assets/css/docs.min.css",
"js": "npm-run-all js-lint* js-compile js-minify js-copy",
diff --git a/site/docs/4.1/examples/.eslintrc.json b/site/docs/4.1/examples/.eslintrc.json
index f04fd6ae1..7461ae627 100644
--- a/site/docs/4.1/examples/.eslintrc.json
+++ b/site/docs/4.1/examples/.eslintrc.json
@@ -7,5 +7,5 @@
"ecmaVersion": 5,
"sourceType": "script"
},
- "extends": "../../../js/tests/unit/.eslintrc.json"
+ "extends": "../../../../js/tests/unit/.eslintrc.json"
}
diff --git a/site/docs/4.1/examples/.stylelintrc b/site/docs/4.1/examples/.stylelintrc
index 6a77dcedb..06c67b5ff 100644
--- a/site/docs/4.1/examples/.stylelintrc
+++ b/site/docs/4.1/examples/.stylelintrc
@@ -1,5 +1,5 @@
{
- "extends": "../../../.stylelintrc",
+ "extends": "../../../../.stylelintrc",
"rules": {
"at-rule-no-vendor-prefix": null,
"comment-empty-line-before": null,