Skip to content

Commit

Permalink
chore: run format
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMSchmidt committed Feb 12, 2024
1 parent 4327b2f commit f1ebc2b
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions packages/cdktf-cli/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,18 +74,21 @@ const config = {
"yoga-layout-prebuilt",
"@cdktf/node-pty-prebuilt-multiarch",
],
plugins: [nativeNodeModulesPlugin, {
name: 'rebuild-log',
setup({ onStart, onEnd }) {
let t;
onStart(() => {
t = Date.now()
})
onEnd(() => {
console.log('build finished in', Date.now() - t, 'ms')
})
}
}],
plugins: [
nativeNodeModulesPlugin,
{
name: "rebuild-log",
setup({ onStart, onEnd }) {
let t;
onStart(() => {
t = Date.now();
});
onEnd(() => {
console.log("build finished in", Date.now() - t, "ms");
});
},
},
],
define: {
"process.env.SENTRY_DSN": JSON.stringify(process.env.SENTRY_DSN || ""),
},
Expand Down

0 comments on commit f1ebc2b

Please sign in to comment.