@storm-software/workspace-tools 1.157.0 → 1.158.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 +23 -0
- package/config/nx.json +1 -1
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/plugins/rust/index.js +1 -2
- package/src/utils/toml.d.ts +1 -36
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## 1.158.0 (2024-08-26)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **workspace-tools:** Remove the `format` task as a dependency of `build`
|
|
6
|
+
([75966255](https://github.com/storm-software/storm-ops/commit/75966255))
|
|
7
|
+
|
|
8
|
+
- **workspace-tools:** Remove `lint` task as a dependency of the `build` task
|
|
9
|
+
([7ffc3dfe](https://github.com/storm-software/storm-ops/commit/7ffc3dfe))
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- **workspace-tools:** Resolved issue with Release Version generator return type
|
|
14
|
+
([602dcd63](https://github.com/storm-software/storm-ops/commit/602dcd63))
|
|
15
|
+
|
|
16
|
+
- **workspace-tools:** Ensure the Release Version generator is default export
|
|
17
|
+
([6345fefc](https://github.com/storm-software/storm-ops/commit/6345fefc))
|
|
18
|
+
|
|
19
|
+
### Dependency Upgrades
|
|
20
|
+
|
|
21
|
+
- **storm-ops:** Upgrade the workspace's Nx version
|
|
22
|
+
([4ce6ac9e](https://github.com/storm-software/storm-ops/commit/4ce6ac9e))
|
|
23
|
+
|
|
1
24
|
## 1.157.0 (2024-08-23)
|
|
2
25
|
|
|
3
26
|
### Features
|
package/config/nx.json
CHANGED
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
"dependsOn": ["^lint-ls"],
|
|
313
313
|
"executor": "nx:run-commands",
|
|
314
314
|
"options": {
|
|
315
|
-
"command": "pnpm exec ls-lint --config=\"
|
|
315
|
+
"command": "pnpm exec ls-lint --config=\"./node_modules/@storm-software/linting-tools/ls-lint/ls-lint.yml\" ",
|
|
316
316
|
"color": true
|
|
317
317
|
}
|
|
318
318
|
},
|