@storm-software/linting-tools 1.20.1 → 1.21.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.20.2](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.20.1...linting-tools-v1.20.2) (2024-01-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **linting-tools:** Call linting functions in parallel ([0aa300f](https://github.com/storm-software/storm-ops/commit/0aa300f2c6dd7a67589025ffe512197535222064))
7
+
8
+ ## [1.20.1](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.20.0...linting-tools-v1.20.1) (2023-12-26)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **linting-tools:** Added tailwindcss prettier formatting to linting tools ([a8072f2](https://github.com/storm-software/storm-ops/commit/a8072f2f92a4cc9e93ef173574ff142cf23c13f7))
14
+
1
15
  # [1.20.0](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.19.0...linting-tools-v1.20.0) (2023-12-22)
2
16
 
3
17
 
package/cli/index.js CHANGED
@@ -315146,21 +315146,23 @@ async function allAction(cspellSkip, alexSkip, depsVersionSkip, circularDepsSkip
315146
315146
  try {
315147
315147
  console.log("\u26A1 Linting the Storm Workspace");
315148
315148
  console.log(process.argv);
315149
+ const promises = [];
315149
315150
  if (!cspellSkip) {
315150
- await cspellAction(cspellConfig);
315151
+ promises.push(cspellAction(cspellConfig));
315151
315152
  }
315152
315153
  if (!alexSkip) {
315153
- await alexAction(alexConfig, alexIgnore);
315154
+ promises.push(alexAction(alexConfig, alexIgnore));
315154
315155
  }
315155
315156
  if (!depsVersionSkip) {
315156
- await depsVersionAction();
315157
+ promises.push(depsVersionAction());
315157
315158
  }
315158
315159
  if (!circularDepsSkip) {
315159
- await circularDepsAction();
315160
+ promises.push(circularDepsAction());
315160
315161
  }
315161
315162
  if (!manypkgSkip) {
315162
- await manypkgAction(manypkgType, manypkgArgs, manypkgFix);
315163
+ promises.push(manypkgAction(manypkgType, manypkgArgs, manypkgFix));
315163
315164
  }
315165
+ await Promise.all(promises);
315164
315166
  console.log(`\u26A1 Linted the workspace`);
315165
315167
  } catch (e) {
315166
315168
  console.error(e);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/linting-tools",
3
- "version": "1.20.1",
3
+ "version": "1.21.0",
4
4
  "private": false,
5
5
  "description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
6
6
  "keywords": [
@@ -83,6 +83,8 @@
83
83
  "@cspell/dict-vue": "3.0.0",
84
84
  "@manypkg/cli": "0.21.0",
85
85
  "@manypkg/get-packages": "2.2.0",
86
+ "@size-limit/file": "^11.0.1",
87
+ "@size-limit/time": "^11.0.1",
86
88
  "@total-typescript/ts-reset": "0.5.1",
87
89
  "@tsconfig/recommended": "^1.0.3",
88
90
  "alex": "11.0.1",
@@ -104,6 +106,7 @@
104
106
  "retext-english": "5.0.0",
105
107
  "retext-equality": "7.0.0",
106
108
  "retext-profanities": "8.0.0",
109
+ "size-limit": "^11.0.1",
107
110
  "spawndamnit": "2.0.0",
108
111
  "supports-color": "9.4.0",
109
112
  "unified": "11.0.4",