Skip to content

Commit

Permalink
Release v0.3.2 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxswjeon authored Apr 15, 2023
2 parents aa7af75 + be4c458 commit 8cb9a46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "flattype",
"version": "0.3.1",
"description": "A simple library for creating flat types",
"main": "dist/Flat.js",
"module": "dist/Flat.js",
Expand Down Expand Up @@ -29,4 +28,4 @@
"vite": "^4.2.1",
"vitest": "^0.29.8"
}
}
}
2 changes: 1 addition & 1 deletion src/Flat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,6 @@ export default class Flat {
}

getKeys() {
return Object.keys(this.flat);
return Object.keys(this.flat).sort();
}
}

0 comments on commit 8cb9a46

Please sign in to comment.