@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/CHANGELOG.md +20 -0
- package/README.md +1 -1
- package/config/nx.json +1 -1
- package/index.js +2 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/generators/preset/generator.js +2 -2
- package/src/plugins/rust/index.js +5 -1
- package/src/plugins/typescript/index.js +1 -1
package/package.json
CHANGED
|
@@ -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.
|
|
68443
|
+
json.packageManager ??= "pnpm@9.8.0";
|
|
68444
68444
|
json.engines ??= {
|
|
68445
68445
|
"node": ">=20.11.0",
|
|
68446
|
-
"pnpm": ">=9.
|
|
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
|
|
128
|
+
command: 'pnpm exec ls-lint --config="@storm-software/linting-tools/ls-lint/.ls-lint.yml" ',
|
|
129
129
|
color: true
|
|
130
130
|
}
|
|
131
131
|
};
|