@storm-software/linting-tools 1.132.88 → 1.132.89
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/bin/lint.cjs +4 -1
- package/bin/lint.js +4 -1
- package/package.json +2 -2
package/bin/lint.cjs
CHANGED
|
@@ -351427,7 +351427,10 @@ void (async () => {
|
|
|
351427
351427
|
const program2 = await createProgram(config2);
|
|
351428
351428
|
program2.exitOverride();
|
|
351429
351429
|
await program2.parseAsync(process.argv);
|
|
351430
|
-
writeSuccess(
|
|
351430
|
+
writeSuccess(
|
|
351431
|
+
"\u2714 Code linting and formatting completed successfully!",
|
|
351432
|
+
config2
|
|
351433
|
+
);
|
|
351431
351434
|
exitWithSuccess(config2);
|
|
351432
351435
|
} catch (error2) {
|
|
351433
351436
|
writeFatal(
|
package/bin/lint.js
CHANGED
|
@@ -343096,7 +343096,10 @@ void (async () => {
|
|
|
343096
343096
|
const program2 = await createProgram(config2);
|
|
343097
343097
|
program2.exitOverride();
|
|
343098
343098
|
await program2.parseAsync(process.argv);
|
|
343099
|
-
writeSuccess(
|
|
343099
|
+
writeSuccess(
|
|
343100
|
+
"\u2714 Code linting and formatting completed successfully!",
|
|
343101
|
+
config2
|
|
343102
|
+
);
|
|
343100
343103
|
exitWithSuccess(config2);
|
|
343101
343104
|
} catch (error2) {
|
|
343102
343105
|
writeFatal(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.132.
|
|
3
|
+
"version": "1.132.89",
|
|
4
4
|
"type": "module",
|
|
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
|
"repository": {
|
|
@@ -149,5 +149,5 @@
|
|
|
149
149
|
"vfile-reporter": "8.1.1"
|
|
150
150
|
},
|
|
151
151
|
"publishConfig": { "access": "public" },
|
|
152
|
-
"gitHead": "
|
|
152
|
+
"gitHead": "59fb127dd72835aea54f08b543d44463b2922338"
|
|
153
153
|
}
|