@storm-software/linting-tools 1.77.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 CHANGED
@@ -1,3 +1,10 @@
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
+
1
8
  ## 1.77.0 (2024-08-22)
2
9
 
3
10
 
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
- [![Version](https://img.shields.io/badge/version-1.76.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-1.78.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/linting-tools",
3
- "version": "1.77.0",
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();