@storm-software/linting-tools 1.16.1 → 1.18.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,17 @@
1
+ # [1.17.0](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.16.1...linting-tools-v1.17.0) (2023-12-12)
2
+
3
+
4
+ ### Features
5
+
6
+ * **workspace-tools:** Added the `packageAll` option to build nested package files ([cf18588](https://github.com/storm-software/storm-ops/commit/cf18588e55e491f984affecd040c95298f0cf273))
7
+
8
+ ## [1.16.1](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.16.0...linting-tools-v1.16.1) (2023-12-11)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **workspace-tools:** Resolved issue with bad nx.json config ([1753feb](https://github.com/storm-software/storm-ops/commit/1753febc615fa341af86d49981905221153dbcfb))
14
+
1
15
  # [1.16.0](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.15.11...linting-tools-v1.16.0) (2023-12-09)
2
16
 
3
17
 
package/README.md CHANGED
@@ -16,7 +16,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
16
16
 
17
17
  <h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
18
18
 
19
- [![Version](https://img.shields.io/badge/version-1.16.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
19
+ [![Version](https://img.shields.io/badge/version-1.16.1-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
20
20
  [![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 docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&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)
21
21
 
22
22
  <h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
package/cli/index.js CHANGED
@@ -33829,6 +33829,36 @@ var require_ensure = __commonJS({
33829
33829
  }
33830
33830
  });
33831
33831
 
33832
+ // node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js
33833
+ var require_universalify2 = __commonJS({
33834
+ "node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js"(exports) {
33835
+ "use strict";
33836
+ exports.fromCallback = function(fn) {
33837
+ return Object.defineProperty(function(...args) {
33838
+ if (typeof args[args.length - 1] === "function")
33839
+ fn.apply(this, args);
33840
+ else {
33841
+ return new Promise((resolve14, reject) => {
33842
+ args.push((err, res) => err != null ? reject(err) : resolve14(res));
33843
+ fn.apply(this, args);
33844
+ });
33845
+ }
33846
+ }, "name", { value: fn.name });
33847
+ };
33848
+ exports.fromPromise = function(fn) {
33849
+ return Object.defineProperty(function(...args) {
33850
+ const cb = args[args.length - 1];
33851
+ if (typeof cb !== "function")
33852
+ return fn.apply(this, args);
33853
+ else {
33854
+ args.pop();
33855
+ fn.apply(this, args).then((r) => cb(null, r), cb);
33856
+ }
33857
+ }, "name", { value: fn.name });
33858
+ };
33859
+ }
33860
+ });
33861
+
33832
33862
  // node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js
33833
33863
  var require_utils8 = __commonJS({
33834
33864
  "node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js"(exports, module) {
@@ -33855,7 +33885,7 @@ var require_jsonfile = __commonJS({
33855
33885
  } catch (_) {
33856
33886
  _fs = __require("fs");
33857
33887
  }
33858
- var universalify = require_universalify();
33888
+ var universalify = require_universalify2();
33859
33889
  var { stringify: stringify2, stripBom } = require_utils8();
33860
33890
  async function _readFile(file, options = {}) {
33861
33891
  if (typeof options === "string") {
@@ -249655,7 +249685,7 @@ var require_find_up2 = __commonJS({
249655
249685
  });
249656
249686
 
249657
249687
  // node_modules/.pnpm/universalify@0.1.2/node_modules/universalify/index.js
249658
- var require_universalify2 = __commonJS({
249688
+ var require_universalify3 = __commonJS({
249659
249689
  "node_modules/.pnpm/universalify@0.1.2/node_modules/universalify/index.js"(exports) {
249660
249690
  "use strict";
249661
249691
  exports.fromCallback = function(fn) {
@@ -249691,7 +249721,7 @@ var require_universalify2 = __commonJS({
249691
249721
  var require_fs7 = __commonJS({
249692
249722
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/fs/index.js"(exports) {
249693
249723
  "use strict";
249694
- var u = require_universalify2().fromCallback;
249724
+ var u = require_universalify3().fromCallback;
249695
249725
  var fs22 = require_graceful_fs();
249696
249726
  var api = [
249697
249727
  "access",
@@ -249916,7 +249946,7 @@ var require_mkdirs_sync = __commonJS({
249916
249946
  var require_mkdirs3 = __commonJS({
249917
249947
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/mkdirs/index.js"(exports, module) {
249918
249948
  "use strict";
249919
- var u = require_universalify2().fromCallback;
249949
+ var u = require_universalify3().fromCallback;
249920
249950
  var mkdirs = u(require_mkdirs2());
249921
249951
  var mkdirsSync = require_mkdirs_sync();
249922
249952
  module.exports = {
@@ -250358,7 +250388,7 @@ var require_copy_sync3 = __commonJS({
250358
250388
  var require_path_exists3 = __commonJS({
250359
250389
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/path-exists/index.js"(exports, module) {
250360
250390
  "use strict";
250361
- var u = require_universalify2().fromPromise;
250391
+ var u = require_universalify3().fromPromise;
250362
250392
  var fs22 = require_fs7();
250363
250393
  function pathExists2(path38) {
250364
250394
  return fs22.access(path38).then(() => true).catch(() => false);
@@ -250584,7 +250614,7 @@ var require_copy3 = __commonJS({
250584
250614
  var require_copy4 = __commonJS({
250585
250615
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/copy/index.js"(exports, module) {
250586
250616
  "use strict";
250587
- var u = require_universalify2().fromCallback;
250617
+ var u = require_universalify3().fromCallback;
250588
250618
  module.exports = {
250589
250619
  copy: u(require_copy3())
250590
250620
  };
@@ -250846,7 +250876,7 @@ var require_rimraf2 = __commonJS({
250846
250876
  var require_remove2 = __commonJS({
250847
250877
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/remove/index.js"(exports, module) {
250848
250878
  "use strict";
250849
- var u = require_universalify2().fromCallback;
250879
+ var u = require_universalify3().fromCallback;
250850
250880
  var rimraf = require_rimraf2();
250851
250881
  module.exports = {
250852
250882
  remove: u(rimraf),
@@ -250859,7 +250889,7 @@ var require_remove2 = __commonJS({
250859
250889
  var require_empty2 = __commonJS({
250860
250890
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/empty/index.js"(exports, module) {
250861
250891
  "use strict";
250862
- var u = require_universalify2().fromCallback;
250892
+ var u = require_universalify3().fromCallback;
250863
250893
  var fs22 = require_graceful_fs();
250864
250894
  var path38 = __require("path");
250865
250895
  var mkdir = require_mkdirs3();
@@ -250909,7 +250939,7 @@ var require_empty2 = __commonJS({
250909
250939
  var require_file2 = __commonJS({
250910
250940
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/ensure/file.js"(exports, module) {
250911
250941
  "use strict";
250912
- var u = require_universalify2().fromCallback;
250942
+ var u = require_universalify3().fromCallback;
250913
250943
  var path38 = __require("path");
250914
250944
  var fs22 = require_graceful_fs();
250915
250945
  var mkdir = require_mkdirs3();
@@ -250964,7 +250994,7 @@ var require_file2 = __commonJS({
250964
250994
  var require_link2 = __commonJS({
250965
250995
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/ensure/link.js"(exports, module) {
250966
250996
  "use strict";
250967
- var u = require_universalify2().fromCallback;
250997
+ var u = require_universalify3().fromCallback;
250968
250998
  var path38 = __require("path");
250969
250999
  var fs22 = require_graceful_fs();
250970
251000
  var mkdir = require_mkdirs3();
@@ -251147,7 +251177,7 @@ var require_symlink_type2 = __commonJS({
251147
251177
  var require_symlink2 = __commonJS({
251148
251178
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/ensure/symlink.js"(exports, module) {
251149
251179
  "use strict";
251150
- var u = require_universalify2().fromCallback;
251180
+ var u = require_universalify3().fromCallback;
251151
251181
  var path38 = __require("path");
251152
251182
  var fs22 = require_graceful_fs();
251153
251183
  var _mkdirs = require_mkdirs3();
@@ -251360,7 +251390,7 @@ var require_jsonfile3 = __commonJS({
251360
251390
  var require_jsonfile4 = __commonJS({
251361
251391
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/json/jsonfile.js"(exports, module) {
251362
251392
  "use strict";
251363
- var u = require_universalify2().fromCallback;
251393
+ var u = require_universalify3().fromCallback;
251364
251394
  var jsonFile = require_jsonfile3();
251365
251395
  module.exports = {
251366
251396
  // jsonfile exports
@@ -251425,7 +251455,7 @@ var require_output_json_sync2 = __commonJS({
251425
251455
  var require_json3 = __commonJS({
251426
251456
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/json/index.js"(exports, module) {
251427
251457
  "use strict";
251428
- var u = require_universalify2().fromCallback;
251458
+ var u = require_universalify3().fromCallback;
251429
251459
  var jsonFile = require_jsonfile4();
251430
251460
  jsonFile.outputJson = u(require_output_json2());
251431
251461
  jsonFile.outputJsonSync = require_output_json_sync2();
@@ -251573,7 +251603,7 @@ var require_move3 = __commonJS({
251573
251603
  var require_move4 = __commonJS({
251574
251604
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/move/index.js"(exports, module) {
251575
251605
  "use strict";
251576
- var u = require_universalify2().fromCallback;
251606
+ var u = require_universalify3().fromCallback;
251577
251607
  module.exports = {
251578
251608
  move: u(require_move3())
251579
251609
  };
@@ -251584,7 +251614,7 @@ var require_move4 = __commonJS({
251584
251614
  var require_output = __commonJS({
251585
251615
  "node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra/lib/output/index.js"(exports, module) {
251586
251616
  "use strict";
251587
- var u = require_universalify2().fromCallback;
251617
+ var u = require_universalify3().fromCallback;
251588
251618
  var fs22 = require_graceful_fs();
251589
251619
  var path38 = __require("path");
251590
251620
  var mkdir = require_mkdirs3();
@@ -305869,7 +305899,7 @@ var import_error_ex = __toESM(require_error_ex(), 1);
305869
305899
  var import_json_parse_even_better_errors = __toESM(require_lib10(), 1);
305870
305900
  var import_code_frame = __toESM(require_lib3(), 1);
305871
305901
 
305872
- // node_modules/.pnpm/lines-and-columns@2.0.3/node_modules/lines-and-columns/build/index.mjs
305902
+ // node_modules/.pnpm/lines-and-columns@2.0.4/node_modules/lines-and-columns/build/index.mjs
305873
305903
  var LF2 = "\n";
305874
305904
  var CR = "\r";
305875
305905
  var LinesAndColumns = (
@@ -22,6 +22,7 @@ typeschema
22
22
  valibot
23
23
  hasura
24
24
  strapi
25
+ tamagui
25
26
  allcontributors
26
27
  probot
27
28
  smee
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/linting-tools",
3
- "version": "1.16.1",
3
+ "version": "1.18.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": [