@storm-software/workspace-tools 1.105.0 → 1.106.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.106.0 (2024-06-22)
2
+
3
+
4
+ ### 🚀 Features
5
+
6
+ - **workspace-tools:** Enhance the Nx workspace task base configuration ([3799d938](https://github.com/storm-software/storm-ops/commit/3799d938))
7
+
8
+ ## 1.105.1 (2024-06-22)
9
+
10
+
11
+ ### 🩹 Fixes
12
+
13
+ - **workspace-tools:** Resolve issue with `execSync` output ([1de2b651](https://github.com/storm-software/storm-ops/commit/1de2b651))
14
+
1
15
  ## 1.105.0 (2024-06-22)
2
16
 
3
17
 
package/config/nx.json CHANGED
@@ -293,7 +293,7 @@
293
293
  "dependsOn": ["^format-toml"],
294
294
  "executor": "nx:run-commands",
295
295
  "options": {
296
- "command": "pnpm exec taplo format --colors=\"always\" --config=\"@storm-software/linting-tools/taplo/.taplo.toml\" --cache-path=\"tmp/taplo/{projectRoot}\"",
296
+ "command": "pnpm exec taplo format --colors=\"always\" --config=\"@storm-software/linting-tools/taplo/.taplo.toml\" --cache-path=\"./tmp/taplo/{projectRoot}\"",
297
297
  "color": true
298
298
  }
299
299
  },
@@ -307,7 +307,7 @@
307
307
  "dependsOn": ["^format-readme"],
308
308
  "executor": "nx:run-commands",
309
309
  "options": {
310
- "command": "pnpm exec storm-git readme-gen --templates=\"docs/readme-templates\" --project=\"{projectName}\"",
310
+ "command": "pnpm exec storm-git readme-gen --templates=\"./docs/readme-templates\" --project=\"{projectName}\"",
311
311
  "color": true
312
312
  }
313
313
  },
@@ -317,7 +317,7 @@
317
317
  "dependsOn": ["^format-prettier"],
318
318
  "executor": "nx:run-commands",
319
319
  "options": {
320
- "command": "pnpm exec prettier \"{projectRoot}/**/*\" --write --ignore-unknown --no-error-on-unmatched-pattern --config=\"@storm-software/prettier/config.json\" --ignore-path=\"@storm-software/prettier/.prettierignore\" --cache --cache-location=\"tmp/prettier/{projectRoot}\" ",
320
+ "command": "pnpm exec prettier \"{projectRoot}/**/*\" --write --ignore-unknown --no-error-on-unmatched-pattern --config=\"./node_modules/@storm-software/prettier/config.json\" --ignore-path=\"./node_modules/@storm-software/prettier/.prettierignore\" --cache --cache-location=\"./tmp/prettier/{projectRoot}\" ",
321
321
  "color": true
322
322
  }
323
323
  },