@storm-software/linting-tools 1.46.7 → 1.47.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 +12 -0
- package/bin/lint.js +5 -2
- package/bin/lint.ts +5 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.47.0 (2024-04-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🚀 Features
|
|
5
|
+
|
|
6
|
+
- **git-tools:** Updated the console write calls to use updated method signature ([d2d7cc8b](https://github.com/storm-software/storm-ops/commit/d2d7cc8b))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.46.7 (2024-04-13)
|
|
2
14
|
|
|
3
15
|
|
package/bin/lint.js
CHANGED
|
@@ -399720,10 +399720,13 @@ void (async () => {
|
|
|
399720
399720
|
const program2 = await createProgram(config);
|
|
399721
399721
|
program2.exitOverride();
|
|
399722
399722
|
await program2.parseAsync(process.argv);
|
|
399723
|
-
writeSuccess(
|
|
399723
|
+
writeSuccess("Code linting and fixing completed successfully!", config);
|
|
399724
399724
|
exitWithSuccess(config);
|
|
399725
399725
|
} catch (error2) {
|
|
399726
|
-
writeFatal(
|
|
399726
|
+
writeFatal(
|
|
399727
|
+
`A fatal error occurred while running the program: ${error2.message}`,
|
|
399728
|
+
config
|
|
399729
|
+
);
|
|
399727
399730
|
exitWithError(config);
|
|
399728
399731
|
process.exit(1);
|
|
399729
399732
|
}
|
package/bin/lint.ts
CHANGED
|
@@ -26,10 +26,13 @@ void (async () => {
|
|
|
26
26
|
|
|
27
27
|
await program.parseAsync(process.argv);
|
|
28
28
|
|
|
29
|
-
writeSuccess(
|
|
29
|
+
writeSuccess("Code linting and fixing completed successfully!", config);
|
|
30
30
|
exitWithSuccess(config);
|
|
31
31
|
} catch (error) {
|
|
32
|
-
writeFatal(
|
|
32
|
+
writeFatal(
|
|
33
|
+
`A fatal error occurred while running the program: ${error.message}`,
|
|
34
|
+
config
|
|
35
|
+
);
|
|
33
36
|
exitWithError(config);
|
|
34
37
|
process.exit(1);
|
|
35
38
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.47.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": [
|