@seayoo-web/scripts 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +8 -1
- package/package.json +1 -1
- package/types/src/stylelint.d.ts +5 -1
- package/types/src/postcss.d.ts +0 -7
package/dist/index.js
CHANGED
|
@@ -236,7 +236,14 @@ const stylelintConfig = {
|
|
|
236
236
|
customSyntax: "postcss-html"
|
|
237
237
|
}
|
|
238
238
|
],
|
|
239
|
-
rules: {
|
|
239
|
+
rules: {
|
|
240
|
+
"selector-pseudo-class-no-unknown": [
|
|
241
|
+
true,
|
|
242
|
+
{
|
|
243
|
+
ignorePseudoClasses: ["deep", "global"]
|
|
244
|
+
}
|
|
245
|
+
]
|
|
246
|
+
}
|
|
240
247
|
};
|
|
241
248
|
export {
|
|
242
249
|
EnvPrefix,
|
package/package.json
CHANGED
package/types/src/stylelint.d.ts
CHANGED