Skip to content

Commit 2e70310

Browse files
committed
style: format build script objects
1 parent d6fb612 commit 2e70310

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

scripts/build.mjs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ async function main() {
3232
logger.log('Building TypeScript declarations only...')
3333
const exitCode = await runSequence([
3434
{ args: ['run', 'clean:dist:types'], command: 'pnpm' },
35-
{ args: ['exec', 'tsgo', '--project', 'tsconfig.dts.json'], command: 'pnpm' },
35+
{
36+
args: ['exec', 'tsgo', '--project', 'tsconfig.dts.json'],
37+
command: 'pnpm',
38+
},
3639
])
3740
process.exitCode = exitCode
3841
return
@@ -71,7 +74,10 @@ async function main() {
7174
// Build types
7275
const typesExitCode = await runSequence([
7376
{ args: ['run', 'clean:dist:types'], command: 'pnpm' },
74-
{ args: ['exec', 'tsgo', '--project', 'tsconfig.dts.json'], command: 'pnpm' },
77+
{
78+
args: ['exec', 'tsgo', '--project', 'tsconfig.dts.json'],
79+
command: 'pnpm',
80+
},
7581
])
7682

7783
process.exitCode = typesExitCode

0 commit comments

Comments
 (0)