We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56aa00d commit 00765afCopy full SHA for 00765af
tooling/v8-snapshot/src/generator/snapshot-generator.ts
@@ -356,6 +356,8 @@ export class SnapshotGenerator {
356
logInfo(`Writing snapshot script to ${this.snapshotScriptPath}`)
357
358
if (this.minify) {
359
+ logInfo('Minifying snapshot script')
360
+
361
const minified = await minify(this.snapshotScript!.toString(), {
362
sourceMap: false,
363
})
@@ -369,6 +371,8 @@ export class SnapshotGenerator {
369
371
}
370
372
373
// 4. Write the snapshot script to the configured file
374
+ logInfo(`Writing snapshot script to ${this.snapshotScriptPath}`)
375
376
return fs.promises.writeFile(this.snapshotScriptPath, this.snapshotScript)
377
378
0 commit comments