@storm-software/workspace-tools 1.126.0 → 1.127.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.127.0 (2024-07-23)
2
+
3
+
4
+ ### Features
5
+
6
+ - **eslint:** Remove the `import` plugin from the preset ([6c8551ae](https://github.com/storm-software/storm-ops/commit/6c8551ae))
7
+
1
8
  ## 1.126.0 (2024-07-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.125.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.126.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/config/nx.json CHANGED
@@ -374,6 +374,55 @@
374
374
  }
375
375
  ],
376
376
  "source_rust": [
377
+ "{workspaceRoot}/.github/**/*",
378
+ "{workspaceRoot}/assets/**/*",
379
+ "{workspaceRoot}/LICENSE",
380
+ "{workspaceRoot}/.gitattributes",
381
+ "{workspaceRoot}/.gitignore",
382
+ "{workspaceRoot}/nx.json",
383
+ "{workspaceRoot}/.nxignore",
384
+ "{workspaceRoot}/storm.json",
385
+ "{workspaceRoot}/storm.*.json",
386
+ "{workspaceRoot}/.storm/config.json",
387
+ "{workspaceRoot}/.storm/config.*.json",
388
+ "{workspaceRoot}/storm.yaml",
389
+ "{workspaceRoot}/storm.*.yaml",
390
+ "{workspaceRoot}/.storm/config.yaml",
391
+ "{workspaceRoot}/.storm/config.*.yaml",
392
+ "{workspaceRoot}/storm.toml",
393
+ "{workspaceRoot}/storm.*.toml",
394
+ "{workspaceRoot}/.storm/config.toml",
395
+ "{workspaceRoot}/.storm/config.*.toml",
396
+ "{workspaceRoot}/storm.config.js",
397
+ "{workspaceRoot}/.env",
398
+ "{workspaceRoot}/.env.local",
399
+ "{projectRoot}/project.json",
400
+ "{projectRoot}/README.md",
401
+ "{projectRoot}/CHANGELOG.md",
402
+ "{projectRoot}/.env",
403
+ "{projectRoot}/.env.local",
404
+ "{projectRoot}/**/*.rs",
405
+ "{projectRoot}/**/*.proto",
406
+ "{projectRoot}/**/*.acid",
407
+ "{projectRoot}/**/*.acidic",
408
+ "{projectRoot}/**/*.prisma",
409
+ "{projectRoot}/src/**/*.json",
410
+ "{projectRoot}/src/**/*.jsonc",
411
+ "{projectRoot}/src/**/*.yaml",
412
+ "{projectRoot}/src/**/*.yml",
413
+ "{projectRoot}/src/**/*.toml",
414
+ {
415
+ "runtime": "node -p '`${process.platform}_${process.arch}`'"
416
+ },
417
+ "!{projectRoot}/README.md",
418
+ "!{projectRoot}/docs/**/*",
419
+ "!{projectRoot}/benches/**/*",
420
+ "!{projectRoot}/e2e/**/*",
421
+ "!{projectRoot}/tests/**/*",
422
+ "!{projectRoot}/testing/**/*"
423
+ ],
424
+ "rust": [
425
+ "{workspaceRoot}/.github/**/*",
377
426
  "{workspaceRoot}/assets/**/*",
378
427
  "{workspaceRoot}/LICENSE",
379
428
  "{workspaceRoot}/.gitattributes",
@@ -420,7 +469,6 @@
420
469
  "!{projectRoot}/tests/**/*",
421
470
  "!{projectRoot}/testing/**/*"
422
471
  ],
423
- "rust": ["config_rust", "source_rust"],
424
472
  "config_typescript": [
425
473
  "{workspaceRoot}/assets/**/*",
426
474
  "{workspaceRoot}/LICENSE",
@@ -525,6 +573,7 @@
525
573
  "!{projectRoot}/node_modules/**/*"
526
574
  ],
527
575
  "typescript": [
576
+ "{workspaceRoot}/.github/**/*",
528
577
  "{workspaceRoot}/assets/**/*",
529
578
  "{workspaceRoot}/LICENSE",
530
579
  "{workspaceRoot}/.gitattributes",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.126.0",
3
+ "version": "1.127.0",
4
4
  "type": "commonjs",
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "repository": {