Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions crates/bashkit-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,15 @@
},
"pnpm": {
"overrides": {
"esbuild": ">=0.28.1"
"esbuild": ">=0.28.1",
"js-yaml": ">=4.2.0"
},
"onlyBuiltDependencies": [
"esbuild"
]
],
"patchedDependencies": {
"supertap@3.0.1": "patches/supertap@3.0.1.patch"
}
},
"ava": {
"files": [
Expand Down
13 changes: 13 additions & 0 deletions crates/bashkit-js/patches/supertap@3.0.1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/dist/index.js b/dist/index.js
index ab236cc5173801c1efc330642ec112339786b779..aaa1355319147bba2f33049185c41967b074fa9e 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -43,7 +43,7 @@ export const test = (title, options) => {
];
if (error) {
const object = error instanceof Error ? serializeErrorForTap(error) : error;
- output.push([' ---', indentString(yaml.safeDump(object).trim(), 4), ' ...'].join('\n'));
+ output.push([' ---', indentString(yaml.dump(object).trim(), 4), ' ...'].join('\n'));
}
return output.filter(Boolean).join('\n');
};
40 changes: 9 additions & 31 deletions crates/bashkit-js/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading