@haus-tech/haus-workflow 0.11.0 → 0.11.1
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 +6 -0
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.11.1](https://github.com/WeAreHausTech/haus-workflow/compare/v0.11.0...v0.11.1) (2026-06-01)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* return null from writeWorkflowConfig when file exists ([9ad36c1](https://github.com/WeAreHausTech/haus-workflow/commit/9ad36c1800023737d4a65feaeca1dc10fb5f797b))
|
|
8
|
+
|
|
3
9
|
## [0.11.0](https://github.com/WeAreHausTech/haus-workflow/compare/v0.10.1...v0.11.0) (2026-06-01)
|
|
4
10
|
|
|
5
11
|
### Features
|
package/dist/cli.js
CHANGED
|
@@ -577,7 +577,7 @@ async function writeWorkflowConfig(root, dryRun) {
|
|
|
577
577
|
const printable = displayPath(root, destPath);
|
|
578
578
|
if (await fs7.pathExists(destPath)) {
|
|
579
579
|
if (dryRun) log(printable + ": exists (project-owned, skipping)");
|
|
580
|
-
return
|
|
580
|
+
return null;
|
|
581
581
|
}
|
|
582
582
|
const ctx = await readJson(hausPath(root, "context-map.json")) ?? {
|
|
583
583
|
mode: "fast",
|