@seayoo-web/scripts 1.2.1 → 1.2.3

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
@@ -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/dist/node.js CHANGED
@@ -6,7 +6,7 @@ import fs from "fs-extra";
6
6
  import inquirer from "inquirer";
7
7
  import ora from "ora";
8
8
  import { r as root, b as addProjectToWorkspace, d as copyTemplate, e as getProjects, f as getTemplates, h as checkGitStatusBeforeDestory, i as createBackupTag, j as removeProjectFromWorkspace, s as submitAllDeletionChanges, k as getRepos } from "./git-rC0NCMws.js";
9
- const commitRE = /^(?:revert: )?(?:feat|fix|docs|style|refactor|test|chore|debug|tweak|improve)(?:\(.+\))?: .{1,100}/;
9
+ const commitRE = /^(?:revert: )?(?:feat|fix|docs|style|refactor|test|build|chore|debug|tweak|improve)(?:\(.+\))?: .{1,100}/;
10
10
  function checkCommit() {
11
11
  const msgPath = process.argv[2];
12
12
  const msg = readFileSync(msgPath, "utf-8").trim();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seayoo-web/scripts",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "scripts for seayoo web monorepos",
5
5
  "type": "module",
6
6
  "source": "index.ts",
@@ -7,5 +7,9 @@ export declare const stylelintConfig: {
7
7
  files: string[];
8
8
  customSyntax: string;
9
9
  }[];
10
- rules: {};
10
+ rules: {
11
+ "selector-pseudo-class-no-unknown": (boolean | {
12
+ ignorePseudoClasses: string[];
13
+ })[];
14
+ };
11
15
  };