aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-02-04 15:41:51 +0100
committerGravatar GitHub <noreply@github.com> 2022-02-04 15:41:51 +0100
commit5a891dc0e4d1e5c7d36609bba4bd3df5063b9745 (patch)
tree4b420f96082fcde911a36ed8fc709ed12a500089 /package.json
parent88b934da8bec70da1400525748336c0b71864b1a (diff)
Update dev dependencies stylelint SASS (#4173)
* Update dev dependencies stylelint SASS Major update for stylelint with breaking changes https://stylelint.io/migration-guide/to-14/ Applied automatic SASS migration to current syntax https://sass-lang.com/documentation/cli/migrator#migrations And a few manual fixes such as: https://github.com/stylelint-scss/stylelint-scss/blob/master/src/rules/dollar-variable-no-missing-interpolation/README.md Other dev dependencies are minor updates. * RTLCSS * Fix color-hex-length bug * Implement make bin/composer * Update git hash
Diffstat (limited to 'package.json')
-rw-r--r--package.json20
1 files changed, 10 insertions, 10 deletions
diff --git a/package.json b/package.json
index 35884d900..cfb574752 100644
--- a/package.json
+++ b/package.json
@@ -24,23 +24,23 @@
"markdownlint": "markdownlint '**/*.md'",
"markdownlint_fix": "markdownlint --fix '**/*.md'",
"rtlcss": "rtlcss -d p/themes/ && find p/themes/ -type f -name '*.rtl.rtl.css' -delete",
- "stylelint": "stylelint '**/*.css' && stylelint --syntax scss '**/*.scss'",
- "stylelint_fix": "stylelint --fix '**/*.css' && stylelint --fix --syntax scss '**/*.scss'",
+ "stylelint": "stylelint '**/*.css' && stylelint --custom-syntax postcss-scss '**/*.scss'",
+ "stylelint_fix": "stylelint --fix '**/*.css' && stylelint --fix --custom-syntax postcss-scss '**/*.scss'",
"test": "npm run eslint && npm run stylelint && npm run markdownlint",
"fix": "npm run rtlcss && npm run stylelint_fix && npm run eslint_fix && npm run markdownlint_fix"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
- "eslint-plugin-import": "^2.25.2",
+ "eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
- "eslint-plugin-promise": "^5.1.1",
- "markdownlint-cli": "^0.29.0",
- "rtlcss": "^3.4.0",
- "stylelint": "^13.13.1",
- "stylelint-config-recommended-scss": "^4.3.0",
- "stylelint-order": "^4.1.0",
- "stylelint-scss": "^3.21.0"
+ "eslint-plugin-promise": "^5.2.0",
+ "markdownlint-cli": "^0.30.0",
+ "rtlcss": "^3.5.0",
+ "sass": "^1.49.0",
+ "stylelint": "^14.3.0",
+ "stylelint-config-recommended-scss": "^5.0.2",
+ "stylelint-order": "^5.0.0"
},
"rtlcssConfig": {}
}