@seayoo-web/scripts 3.1.1 → 3.1.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 CHANGED
@@ -383,6 +383,8 @@ const stylelintConfig = {
383
383
  rules: {
384
384
  "selector-class-pattern": /^[a-z\d-_]+$/,
385
385
  "media-feature-range-notation": "prefix",
386
+ "color-function-notation": "legacy",
387
+ "alpha-value-notation": "number",
386
388
  "selector-pseudo-class-no-unknown": [
387
389
  true,
388
390
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seayoo-web/scripts",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "description": "scripts for seayoo web repos",
5
5
  "type": "module",
6
6
  "source": "index.ts",
@@ -10,6 +10,8 @@ export declare const stylelintConfig: {
10
10
  rules: {
11
11
  "selector-class-pattern": RegExp;
12
12
  "media-feature-range-notation": string;
13
+ "color-function-notation": string;
14
+ "alpha-value-notation": string;
13
15
  "selector-pseudo-class-no-unknown": (boolean | {
14
16
  ignorePseudoClasses: string[];
15
17
  })[];