Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiosantoscode committed Jan 30, 2023
1 parent 6c726e9 commit e8cfadd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v5.16.2

- Fix sourcemaps with non-ascii characters (#1318)
- Support string module name and export * as (#1336)
- Do not move `let` out of `for` initializers, as it can change scoping
- Fix a corner case that would generate the invalid syntax `if (something) let x` ("let" in braceless if body)
- Knowledge of more native object properties (#1330)
- Got rid of Travis (#1323)
- Added semi-secret `asObject` sourcemap option to typescript defs (#1321)

## v5.16.1

- Properly handle references in destructurings (`const { [reference]: val } = ...`)
Expand Down
2 changes: 1 addition & 1 deletion test/mocha/sourcemaps.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ describe("sourcemaps", function() {
if (result.error) throw result.error;
assertCodeWithInlineMapEquals(result.code, read("./test/input/issue-505/output.js"));
});
it.only("Should work with unicode characters", async function() {
it("Should work with unicode characters", async function() {
var code = [
"var tëst = '→unicøde←';",
"alert(tëst);",
Expand Down

0 comments on commit e8cfadd

Please sign in to comment.