@storm-software/workspace-tools 1.158.0 → 1.159.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.158.0",
3
+ "version": "1.159.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": {
@@ -68440,10 +68440,10 @@ async function presetGeneratorFn(tree, options) {
68440
68440
  type: "github",
68441
68441
  url: `${options.repositoryUrl}.git`
68442
68442
  };
68443
- json.packageManager ??= "pnpm@9.6.0";
68443
+ json.packageManager ??= "pnpm@9.8.0";
68444
68444
  json.engines ??= {
68445
68445
  "node": ">=20.11.0",
68446
- "pnpm": ">=9.6.0"
68446
+ "pnpm": ">=9.8.0"
68447
68447
  };
68448
68448
  json.devEngines ??= {
68449
68449
  "node": "20.x || 21.x"
@@ -179,7 +179,11 @@ var createNodes = [
179
179
  "lint-ls": {
180
180
  cache: true,
181
181
  inputs: ["linting", "rust", "^production"],
182
- dependsOn: ["^lint-ls"]
182
+ dependsOn: ["^lint-ls"],
183
+ options: {
184
+ command: 'pnpm exec ls-lint --config="./node_modules/@storm-software/linting-tools/ls-lint/.ls-lint.yml" ',
185
+ color: true
186
+ }
183
187
  },
184
188
  lint: {
185
189
  cache: true,
@@ -125,7 +125,7 @@ var createNodes = [
125
125
  dependsOn: ["^lint-ls"],
126
126
  executor: "nx:run-commands",
127
127
  options: {
128
- command: 'pnpm exec ls-lint --config="@storm-software/linting-tools/ls-lint/ls-lint.yml" ',
128
+ command: 'pnpm exec ls-lint --config="@storm-software/linting-tools/ls-lint/.ls-lint.yml" ',
129
129
  color: true
130
130
  }
131
131
  };