@seayoo-web/scripts 3.1.4 → 3.1.5

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
@@ -385,6 +385,7 @@ const stylelintConfig = {
385
385
  "selector-class-pattern": /^[a-z\d-_]+$/,
386
386
  "media-feature-range-notation": "prefix",
387
387
  "color-function-notation": "legacy",
388
+ "color-function-alias-notation": "with-alpha",
388
389
  "alpha-value-notation": "number",
389
390
  "selector-pseudo-class-no-unknown": [
390
391
  true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seayoo-web/scripts",
3
- "version": "3.1.4",
3
+ "version": "3.1.5",
4
4
  "description": "scripts for seayoo web repos",
5
5
  "type": "module",
6
6
  "source": "index.ts",
@@ -1,4 +1,4 @@
1
- import { type TSESLint } from "@typescript-eslint/utils";
1
+ import type { TSESLint } from "@typescript-eslint/utils";
2
2
  /**
3
3
  * 默认的 import order 检查配置
4
4
  *
@@ -11,6 +11,7 @@ export declare const stylelintConfig: {
11
11
  "selector-class-pattern": RegExp;
12
12
  "media-feature-range-notation": string;
13
13
  "color-function-notation": string;
14
+ "color-function-alias-notation": string;
14
15
  "alpha-value-notation": string;
15
16
  "selector-pseudo-class-no-unknown": (boolean | {
16
17
  ignorePseudoClasses: string[];