@storm-software/linting-tools 1.26.4 → 1.26.5
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 +8 -0
- package/cli/index.js +14 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [1.26.4](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.26.3...linting-tools-v1.26.4) (2024-01-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **git-tools:** Resolved issue with logging strings ([21d9e0d](https://github.com/storm-software/storm-ops/commit/21d9e0dc7f21820909697577931d0c7b339755b7))
|
|
7
|
+
* **workspace-tools:** Remove the transform code from tsup patch ([399c910](https://github.com/storm-software/storm-ops/commit/399c910f0ca46741cc97b06f2a0812adbf7910f0))
|
|
8
|
+
|
|
1
9
|
## [1.26.3](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.26.2...linting-tools-v1.26.3) (2024-01-16)
|
|
2
10
|
|
|
3
11
|
|
package/cli/index.js
CHANGED
|
@@ -282119,12 +282119,14 @@ var getLogFn = (config2 = {}, logLevel = LogLevel.INFO) => {
|
|
|
282119
282119
|
console.error(
|
|
282120
282120
|
`
|
|
282121
282121
|
|
|
282122
|
+
|
|
282122
282123
|
${chalk.bold.hex(config2?.colors?.fatal ? config2.colors.fatal : "#1fb2a6")(
|
|
282123
282124
|
">"
|
|
282124
282125
|
)} ${chalk.bold.bgHex(config2?.colors?.fatal ? config2.colors.fatal : "#1fb2a6").white(" \u{1F480} Fatal ")} ${chalk.reset.hex(
|
|
282125
282126
|
config2?.colors?.fatal ? config2.colors.fatal : "#1fb2a6"
|
|
282126
282127
|
)(message)}
|
|
282127
282128
|
|
|
282129
|
+
|
|
282128
282130
|
`
|
|
282129
282131
|
);
|
|
282130
282132
|
};
|
|
@@ -282134,12 +282136,14 @@ var getLogFn = (config2 = {}, logLevel = LogLevel.INFO) => {
|
|
|
282134
282136
|
console.error(
|
|
282135
282137
|
`
|
|
282136
282138
|
|
|
282139
|
+
|
|
282137
282140
|
${chalk.bold.hex(config2?.colors?.error ? config2.colors.error : "#7d1a1a")(
|
|
282138
282141
|
">"
|
|
282139
282142
|
)} ${chalk.bold.bgHex(config2?.colors?.error ? config2.colors.error : "#7d1a1a").white(" \u{1F6D1} Error ")} ${chalk.reset.hex(
|
|
282140
282143
|
config2?.colors?.error ? config2.colors.error : "#7d1a1a"
|
|
282141
282144
|
)(message)}
|
|
282142
282145
|
|
|
282146
|
+
|
|
282143
282147
|
`
|
|
282144
282148
|
);
|
|
282145
282149
|
};
|
|
@@ -282149,12 +282153,14 @@ var getLogFn = (config2 = {}, logLevel = LogLevel.INFO) => {
|
|
|
282149
282153
|
console.warn(
|
|
282150
282154
|
`
|
|
282151
282155
|
|
|
282156
|
+
|
|
282152
282157
|
${chalk.bold.hex(config2?.colors?.warning ? config2.colors.warning : "#fcc419")(
|
|
282153
282158
|
">"
|
|
282154
282159
|
)} ${chalk.bold.bgHex(config2?.colors?.warning ? config2.colors.warning : "#fcc419").white(" \u26A0\uFE0F Warn ")} ${chalk.reset.hex(
|
|
282155
282160
|
config2?.colors?.warning ? config2.colors.warning : "#fcc419"
|
|
282156
282161
|
)(message)}
|
|
282157
282162
|
|
|
282163
|
+
|
|
282158
282164
|
`
|
|
282159
282165
|
);
|
|
282160
282166
|
};
|
|
@@ -282164,12 +282170,14 @@ var getLogFn = (config2 = {}, logLevel = LogLevel.INFO) => {
|
|
|
282164
282170
|
console.info(
|
|
282165
282171
|
`
|
|
282166
282172
|
|
|
282173
|
+
|
|
282167
282174
|
${chalk.bold.hex(config2?.colors?.info ? config2.colors.info : "#0ea5e9")(
|
|
282168
282175
|
">"
|
|
282169
282176
|
)} ${chalk.bold.bgHex(config2?.colors?.info ? config2.colors.info : "#0ea5e9").white(" \u{1F4EC} Info ")} ${chalk.reset.hex(
|
|
282170
282177
|
config2?.colors?.info ? config2.colors.info : "#0ea5e9"
|
|
282171
282178
|
)(message)}
|
|
282172
282179
|
|
|
282180
|
+
|
|
282173
282181
|
`
|
|
282174
282182
|
);
|
|
282175
282183
|
};
|
|
@@ -282179,12 +282187,14 @@ var getLogFn = (config2 = {}, logLevel = LogLevel.INFO) => {
|
|
|
282179
282187
|
console.info(
|
|
282180
282188
|
`
|
|
282181
282189
|
|
|
282190
|
+
|
|
282182
282191
|
${chalk.bold.hex(config2?.colors?.success ? config2.colors.success : "#087f5b")(
|
|
282183
282192
|
">"
|
|
282184
282193
|
)} ${chalk.bold.bgHex(config2?.colors?.success ? config2.colors.success : "#087f5b").white(" \u{1F389} Success ")} ${chalk.reset.hex(
|
|
282185
282194
|
config2?.colors?.success ? config2.colors.success : "#087f5b"
|
|
282186
282195
|
)(message)}
|
|
282187
282196
|
|
|
282197
|
+
|
|
282188
282198
|
`
|
|
282189
282199
|
);
|
|
282190
282200
|
};
|
|
@@ -282194,12 +282204,14 @@ var getLogFn = (config2 = {}, logLevel = LogLevel.INFO) => {
|
|
|
282194
282204
|
console.debug(
|
|
282195
282205
|
`
|
|
282196
282206
|
|
|
282207
|
+
|
|
282197
282208
|
${chalk.bold.hex(config2?.colors?.primary ? config2.colors.primary : "#1fb2a6")(
|
|
282198
282209
|
">"
|
|
282199
282210
|
)} ${chalk.bold.bgHex(config2?.colors?.primary ? config2.colors.primary : "#1fb2a6").white(" \u{1F9EA} Debug ")} ${chalk.reset.hex(
|
|
282200
282211
|
config2?.colors?.primary ? config2.colors.primary : "#1fb2a6"
|
|
282201
282212
|
)(message)}
|
|
282202
282213
|
|
|
282214
|
+
|
|
282203
282215
|
`
|
|
282204
282216
|
);
|
|
282205
282217
|
};
|
|
@@ -282208,12 +282220,14 @@ var getLogFn = (config2 = {}, logLevel = LogLevel.INFO) => {
|
|
|
282208
282220
|
console.log(
|
|
282209
282221
|
`
|
|
282210
282222
|
|
|
282223
|
+
|
|
282211
282224
|
${chalk.bold.hex(config2?.colors?.primary ? config2.colors.primary : "#1fb2a6")(
|
|
282212
282225
|
">"
|
|
282213
282226
|
)} ${chalk.bold.bgHex(config2?.colors?.primary ? config2.colors.primary : "#1fb2a6").white(" \u{1F4E2} System ")} ${chalk.bold.hex(
|
|
282214
282227
|
config2?.colors?.primary ? config2.colors.primary : "#1fb2a6"
|
|
282215
282228
|
)(message)}
|
|
282216
282229
|
|
|
282230
|
+
|
|
282217
282231
|
`
|
|
282218
282232
|
);
|
|
282219
282233
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.26.
|
|
3
|
+
"version": "1.26.5",
|
|
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": [
|