Skip to content

Commit 4817697

Browse files
committed
bump to 2.5.0
1 parent 00f1d72 commit 4817697

File tree

6 files changed

+12084
-18719
lines changed

6 files changed

+12084
-18719
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
# 2.5.0 (2022-07-09)
4+
5+
* Support for ESM-style node imports
6+
* Fix Wednesday parsing for RFC 850 strings
7+
* Increase number of digits allowed in ISO durations
8+
39
## 2.4.0 (2022-05-08)
410

511
* Add support for parsing the ISO zone extension, like `2022-05-08T20:42:00.000-04:00[America/New_York]`

babel.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = { presets: ["@babel/preset-env"] };

jest.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@ module.exports = {
33
roots: ["test"],
44
coverageDirectory: "build/coverage",
55
collectCoverageFrom: ["src/**/*.js", "!src/zone.js"],
6+
transform: {
7+
"^.+\\.js$": "babel-jest",
8+
},
69
};

0 commit comments

Comments
 (0)