Skip to content

Commit ab5047b

Browse files
committed
Add missing semicolons
1 parent 2320f9d commit ab5047b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const entryPointsPlugin = {
127127
const imports = actionsSorted
128128
.map(
129129
(action) =>
130-
`import * as ${action.pascalCaseName} from "./src/${basename(action.path)}"`,
130+
`import * as ${action.pascalCaseName} from "./src/${basename(action.path)}";`,
131131
)
132132
.join("\n");
133133
const wrappers = actionsSorted

0 commit comments

Comments
 (0)