@storm-software/linting-tools 1.76.0 → 1.78.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 +14 -0
- package/README.md +1 -1
- package/bin/lint.js +24 -24
- package/cspell/dictionary.txt +2 -0
- package/package.json +1 -1
- package/src/cli/index.js +24 -24
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 1.78.0 (2024-08-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
- **k8s-tools:** Initial code check-in of k8s tools ([cac95faa](https://github.com/storm-software/storm-ops/commit/cac95faa))
|
|
7
|
+
|
|
8
|
+
## 1.77.0 (2024-08-22)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
- **workspace-tools:** Added the `includeApps` option to the Rust and TypeScript plugins ([7bd309f6](https://github.com/storm-software/storm-ops/commit/7bd309f6))
|
|
14
|
+
|
|
1
15
|
## 1.76.0 (2024-08-19)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/bin/lint.js
CHANGED
|
@@ -361980,6 +361980,30 @@ Path: ${pathInsideMonorepo ? pathInsideMonorepo : process.cwd()}`
|
|
|
361980
361980
|
return result;
|
|
361981
361981
|
}
|
|
361982
361982
|
|
|
361983
|
+
// packages/config-tools/src/utilities/chalk.ts
|
|
361984
|
+
var import_chalk = __toESM(require_source());
|
|
361985
|
+
var chalkDefault = {
|
|
361986
|
+
hex: (_6) => (message) => message,
|
|
361987
|
+
bgHex: (_6) => ({
|
|
361988
|
+
whiteBright: (message) => message
|
|
361989
|
+
}),
|
|
361990
|
+
whiteBright: (message) => message,
|
|
361991
|
+
bold: {
|
|
361992
|
+
hex: (_6) => (message) => message,
|
|
361993
|
+
bgHex: (_6) => ({
|
|
361994
|
+
whiteBright: (message) => message
|
|
361995
|
+
}),
|
|
361996
|
+
whiteBright: (message) => message
|
|
361997
|
+
}
|
|
361998
|
+
};
|
|
361999
|
+
var getChalk = () => {
|
|
362000
|
+
let _chalk = import_chalk.default;
|
|
362001
|
+
if (!_chalk?.hex || !_chalk?.bold?.hex || !_chalk?.bgHex || !_chalk?.whiteBright) {
|
|
362002
|
+
_chalk = chalkDefault;
|
|
362003
|
+
}
|
|
362004
|
+
return _chalk;
|
|
362005
|
+
};
|
|
362006
|
+
|
|
361983
362007
|
// packages/config/src/constants.ts
|
|
361984
362008
|
var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
|
|
361985
362009
|
var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
@@ -366229,30 +366253,6 @@ var getLogLevelLabel = (logLevel = LogLevel.INFO) => {
|
|
|
366229
366253
|
return LogLevelLabel.INFO;
|
|
366230
366254
|
};
|
|
366231
366255
|
|
|
366232
|
-
// packages/config-tools/src/utilities/chalk.ts
|
|
366233
|
-
var import_chalk = __toESM(require_source());
|
|
366234
|
-
var chalkDefault = {
|
|
366235
|
-
hex: (_6) => (message) => message,
|
|
366236
|
-
bgHex: (_6) => ({
|
|
366237
|
-
whiteBright: (message) => message
|
|
366238
|
-
}),
|
|
366239
|
-
whiteBright: (message) => message,
|
|
366240
|
-
bold: {
|
|
366241
|
-
hex: (_6) => (message) => message,
|
|
366242
|
-
bgHex: (_6) => ({
|
|
366243
|
-
whiteBright: (message) => message
|
|
366244
|
-
}),
|
|
366245
|
-
whiteBright: (message) => message
|
|
366246
|
-
}
|
|
366247
|
-
};
|
|
366248
|
-
var getChalk = () => {
|
|
366249
|
-
let _chalk = import_chalk.default;
|
|
366250
|
-
if (!_chalk?.hex || !_chalk?.bold?.hex || !_chalk?.bgHex || !_chalk?.whiteBright) {
|
|
366251
|
-
_chalk = chalkDefault;
|
|
366252
|
-
}
|
|
366253
|
-
return _chalk;
|
|
366254
|
-
};
|
|
366255
|
-
|
|
366256
366256
|
// packages/config-tools/src/utilities/logger.ts
|
|
366257
366257
|
var getLogFn = (logLevel = LogLevel.INFO, config = {}) => {
|
|
366258
366258
|
let _chalk = getChalk();
|
package/cspell/dictionary.txt
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.78.0",
|
|
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": {
|
package/src/cli/index.js
CHANGED
|
@@ -360170,6 +360170,30 @@ Path: ${pathInsideMonorepo ? pathInsideMonorepo : process.cwd()}`
|
|
|
360170
360170
|
return result;
|
|
360171
360171
|
}
|
|
360172
360172
|
|
|
360173
|
+
// packages/config-tools/src/utilities/chalk.ts
|
|
360174
|
+
var import_chalk = __toESM(require_source());
|
|
360175
|
+
var chalkDefault = {
|
|
360176
|
+
hex: (_6) => (message) => message,
|
|
360177
|
+
bgHex: (_6) => ({
|
|
360178
|
+
whiteBright: (message) => message
|
|
360179
|
+
}),
|
|
360180
|
+
whiteBright: (message) => message,
|
|
360181
|
+
bold: {
|
|
360182
|
+
hex: (_6) => (message) => message,
|
|
360183
|
+
bgHex: (_6) => ({
|
|
360184
|
+
whiteBright: (message) => message
|
|
360185
|
+
}),
|
|
360186
|
+
whiteBright: (message) => message
|
|
360187
|
+
}
|
|
360188
|
+
};
|
|
360189
|
+
var getChalk = () => {
|
|
360190
|
+
let _chalk = import_chalk.default;
|
|
360191
|
+
if (!_chalk?.hex || !_chalk?.bold?.hex || !_chalk?.bgHex || !_chalk?.whiteBright) {
|
|
360192
|
+
_chalk = chalkDefault;
|
|
360193
|
+
}
|
|
360194
|
+
return _chalk;
|
|
360195
|
+
};
|
|
360196
|
+
|
|
360173
360197
|
// packages/config/src/constants.ts
|
|
360174
360198
|
var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
|
|
360175
360199
|
var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
@@ -364419,30 +364443,6 @@ var getLogLevelLabel = (logLevel = LogLevel.INFO) => {
|
|
|
364419
364443
|
return LogLevelLabel.INFO;
|
|
364420
364444
|
};
|
|
364421
364445
|
|
|
364422
|
-
// packages/config-tools/src/utilities/chalk.ts
|
|
364423
|
-
var import_chalk = __toESM(require_source());
|
|
364424
|
-
var chalkDefault = {
|
|
364425
|
-
hex: (_6) => (message) => message,
|
|
364426
|
-
bgHex: (_6) => ({
|
|
364427
|
-
whiteBright: (message) => message
|
|
364428
|
-
}),
|
|
364429
|
-
whiteBright: (message) => message,
|
|
364430
|
-
bold: {
|
|
364431
|
-
hex: (_6) => (message) => message,
|
|
364432
|
-
bgHex: (_6) => ({
|
|
364433
|
-
whiteBright: (message) => message
|
|
364434
|
-
}),
|
|
364435
|
-
whiteBright: (message) => message
|
|
364436
|
-
}
|
|
364437
|
-
};
|
|
364438
|
-
var getChalk = () => {
|
|
364439
|
-
let _chalk = import_chalk.default;
|
|
364440
|
-
if (!_chalk?.hex || !_chalk?.bold?.hex || !_chalk?.bgHex || !_chalk?.whiteBright) {
|
|
364441
|
-
_chalk = chalkDefault;
|
|
364442
|
-
}
|
|
364443
|
-
return _chalk;
|
|
364444
|
-
};
|
|
364445
|
-
|
|
364446
364446
|
// packages/config-tools/src/utilities/logger.ts
|
|
364447
364447
|
var getLogFn = (logLevel = LogLevel.INFO, config = {}) => {
|
|
364448
364448
|
let _chalk = getChalk();
|