From a6849b7746d7b250668ef1a26c2a67c4927160d4 Mon Sep 17 00:00:00 2001 From: Gabriel Diaz Date: Mon, 11 Jan 2021 13:21:43 -0500 Subject: [PATCH] Add extra stylelint sass dependencies (#1130) * Add extra stylelint sass dependencies * adding updated tap * fixed again Co-authored-by: Lukas Gravley --- dependencies/package-lock.json | 28 ++++++++++++++++++++++++++++ dependencies/package.json | 5 +++-- 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/dependencies/package-lock.json b/dependencies/package-lock.json index f83f8c6e..f1b46112 100644 --- a/dependencies/package-lock.json +++ b/dependencies/package-lock.json @@ -5374,6 +5374,15 @@ "util-deprecate": "^1.0.2" } }, + "postcss-sorting": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-5.0.1.tgz", + "integrity": "sha512-Y9fUFkIhfrm6i0Ta3n+89j56EFqaNRdUKqXyRp6kvTcSXnmgEjaVowCXH+JBe9+YKWqd4nc28r2sgwnzJalccA==", + "requires": { + "lodash": "^4.17.14", + "postcss": "^7.0.17" + } + }, "postcss-syntax": { "version": "0.36.2", "resolved": "https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.36.2.tgz", @@ -6499,6 +6508,15 @@ "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-3.0.0.tgz", "integrity": "sha512-F6yTRuc06xr1h5Qw/ykb2LuFynJ2IxkKfCMf+1xqPffkxh0S09Zc902XCffcsw/XMFq/OzQ1w54fLIDtmRNHnQ==" }, + "stylelint-config-sass-guidelines": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/stylelint-config-sass-guidelines/-/stylelint-config-sass-guidelines-7.1.0.tgz", + "integrity": "sha512-WvC9nRdlYknftPcUaJCajrPYKg6d2CKffrr7BPPkN/i/Mt8Qsm1hNQ9lqC1sKoCIKdH051SCEZi10qwFLgDbbg==", + "requires": { + "stylelint-order": "^4.0.0", + "stylelint-scss": "^3.18.0" + } + }, "stylelint-config-standard": { "version": "20.0.0", "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-20.0.0.tgz", @@ -6507,6 +6525,16 @@ "stylelint-config-recommended": "^3.0.0" } }, + "stylelint-order": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-4.1.0.tgz", + "integrity": "sha512-sVTikaDvMqg2aJjh4r48jsdfmqLT+nqB1MOsaBnvM3OwLx4S+WXcsxsgk5w18h/OZoxZCxuyXMh61iBHcj9Qiw==", + "requires": { + "lodash": "^4.17.15", + "postcss": "^7.0.31", + "postcss-sorting": "^5.0.1" + } + }, "stylelint-scss": { "version": "3.18.0", "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.18.0.tgz", diff --git a/dependencies/package.json b/dependencies/package.json index ef942abe..7644756e 100644 --- a/dependencies/package.json +++ b/dependencies/package.json @@ -23,9 +23,10 @@ "sql-lint": "0.0.15", "standard": "^16.0.3", "stylelint": "^13.8.0", + "stylelint-config-sass-guidelines": "^7.1.0", "stylelint-config-standard": "^20.0.0", "stylelint-scss": "^3.18.0", - "typescript": "^4.1.3", - "tekton-lint": "^0.5.2" + "tekton-lint": "^0.5.2", + "typescript": "^4.1.3" } }