We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
runPackageManagerCommand
1 parent 8c8a2e7 commit 4629119Copy full SHA for 4629119
actions/unjs/oxfmt.ts
@@ -56,6 +56,6 @@ export default defineAction({
56
await utils.addDevDependency("oxfmt");
57
58
// Run oxfmt to format the codebase
59
- await utils.runScript("oxfmt --write .");
+ await utils.runPackageManagerCommand("oxfmt --write .");
60
},
61
});
actions/unjs/oxlint.ts
@@ -74,6 +74,6 @@ export default defineAction({
74
75
76
// Run oxlint --fix to apply fixes
77
- await utils.runScript("oxlint --fix");
+ await utils.runPackageManagerCommand("oxlint --fix");
78
79
0 commit comments