dependencies: Upgrade JavaScript dependencies.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-09-02 15:52:03 -07:00
committed by Anders Kaseorg
parent 66a1037f06
commit d9860d40a6
5 changed files with 420 additions and 397 deletions

View File

@@ -21,13 +21,13 @@ module.exports = {
// Limit language features
"color-no-hex": true,
"color-named": "never",
"declaration-property-value-blacklist": {
"declaration-property-value-disallowed-list": {
// thin/medium/thick is under-specified, please use pixels
"/^(border(-top|-right|-bottom|-left)?|outline)(-width)?$/": [
/\b(thin|medium|thick)\b/,
],
},
"function-blacklist": [
"function-disallowed-list": [
// We use hsl(a) instead of rgb(a)
"rgb",
"rgba",
@@ -35,7 +35,7 @@ module.exports = {
// Zulip CSS should have no dependencies on external resources
"function-url-no-scheme-relative": true,
"function-url-scheme-whitelist": [],
"function-url-scheme-allowed-list": [],
// We use autoprefixer to generate vendor prefixes
"at-rule-no-vendor-prefix": true,