Skip to content

Commit 71b20cf

Browse files
DanielMSchmidtansgarm
authored andcommitted
chore: run format
1 parent 23b7526 commit 71b20cf

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

packages/cdktf-cli/build.ts

+15-12
Original file line numberDiff line numberDiff line change
@@ -74,18 +74,21 @@ const config = {
7474
"yoga-layout-prebuilt",
7575
"@cdktf/node-pty-prebuilt-multiarch",
7676
],
77-
plugins: [nativeNodeModulesPlugin, {
78-
name: 'rebuild-log',
79-
setup({ onStart, onEnd }) {
80-
let t;
81-
onStart(() => {
82-
t = Date.now()
83-
})
84-
onEnd(() => {
85-
console.log('build finished in', Date.now() - t, 'ms')
86-
})
87-
}
88-
}],
77+
plugins: [
78+
nativeNodeModulesPlugin,
79+
{
80+
name: "rebuild-log",
81+
setup({ onStart, onEnd }) {
82+
let t;
83+
onStart(() => {
84+
t = Date.now();
85+
});
86+
onEnd(() => {
87+
console.log("build finished in", Date.now() - t, "ms");
88+
});
89+
},
90+
},
91+
],
8992
define: {
9093
"process.env.SENTRY_DSN": JSON.stringify(process.env.SENTRY_DSN || ""),
9194
},

0 commit comments

Comments
 (0)