Skip to content

Commit

Permalink
Fix metafile changelog entry (#940)
Browse files Browse the repository at this point in the history
Judging from https://github.com/evanw/esbuild/pull/924/files#diff-9907e032076127f1c8fe94801ba7841bf9a433c6c9d4793f0b4665509a9755eaR850, the `metafile` is stored on the result (else this example just made a global variable out of nowhere). This is also incorrect in the [release description](https://github.com/evanw/esbuild/releases/v0.9.0).
  • Loading branch information
jridgewell authored Mar 10, 2021
1 parent 1241280 commit d198603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
bundle: true,
metafile: true,
})
console.log(metafile.outputs)
console.log(result.metafile.outputs)
```

* The banner and footer options are now language-specific ([#712](https://github.com/evanw/esbuild/issues/712))
Expand Down

0 comments on commit d198603

Please sign in to comment.