@storm-software/workspace-tools 1.158.1 → 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.1",
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": {
@@ -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
  };