Skip to content

Commit b1ca32b

Browse files
chore: apply automated updates
1 parent 2b35d5a commit b1ca32b

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

skills/codeup-action/SKILL.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,9 @@ await utils.remove(".oldconfig");
106106
await utils.remove(".oldignore");
107107

108108
// Write new config (skip if exists)
109-
await utils.write(
110-
"new.config.json",
111-
JSON.stringify({ key: "value" }, null, 2),
112-
{ skipIfExists: true },
113-
);
109+
await utils.write("new.config.json", JSON.stringify({ key: "value" }, null, 2), {
110+
skipIfExists: true,
111+
});
114112

115113
// Update package.json scripts
116114
await utils.updatePackageJSON((pkg) => {
@@ -150,8 +148,7 @@ export default defineAction({
150148
},
151149
async filter({ utils }) {
152150
return (
153-
(await utils.existsWithAnyExt(".oldrc")) &&
154-
!(await utils.existsWithAnyExt("new.config"))
151+
(await utils.existsWithAnyExt(".oldrc")) && !(await utils.existsWithAnyExt("new.config"))
155152
);
156153
},
157154
async apply({ utils }) {

0 commit comments

Comments
 (0)