@storm-software/linting-tools 1.20.1 → 1.20.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/CHANGELOG.md +7 -0
- package/cli/index.js +7 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.20.1](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.20.0...linting-tools-v1.20.1) (2023-12-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **linting-tools:** Added tailwindcss prettier formatting to linting tools ([a8072f2](https://github.com/storm-software/storm-ops/commit/a8072f2f92a4cc9e93ef173574ff142cf23c13f7))
|
|
7
|
+
|
|
1
8
|
# [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
9
|
|
|
3
10
|
|
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
|
-
|
|
315151
|
+
promises.push(cspellAction(cspellConfig));
|
|
315151
315152
|
}
|
|
315152
315153
|
if (!alexSkip) {
|
|
315153
|
-
|
|
315154
|
+
promises.push(alexAction(alexConfig, alexIgnore));
|
|
315154
315155
|
}
|
|
315155
315156
|
if (!depsVersionSkip) {
|
|
315156
|
-
|
|
315157
|
+
promises.push(depsVersionAction());
|
|
315157
315158
|
}
|
|
315158
315159
|
if (!circularDepsSkip) {
|
|
315159
|
-
|
|
315160
|
+
promises.push(circularDepsAction());
|
|
315160
315161
|
}
|
|
315161
315162
|
if (!manypkgSkip) {
|
|
315162
|
-
|
|
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.
|
|
3
|
+
"version": "1.20.2",
|
|
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": [
|