@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/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/config/nx.json +1 -1
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/plugins/rust/index.js +5 -1
- package/src/plugins/typescript/index.js +1 -1
package/package.json
CHANGED
|
@@ -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
|
|
128
|
+
command: 'pnpm exec ls-lint --config="@storm-software/linting-tools/ls-lint/.ls-lint.yml" ',
|
|
129
129
|
color: true
|
|
130
130
|
}
|
|
131
131
|
};
|