We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 918ea7e commit d37d88aCopy full SHA for d37d88a
CHANGELOG.md
@@ -1,5 +1,9 @@
1
### Changelog
2
3
+- 2.6.6 (2020-08-23)
4
+ - Bugfixes:
5
+ - Fixed broken npm package (#417)
6
+
7
- 2.6.5 (2020-08-23)
8
- Bugfixes:
9
- `luxon`-less binary should not contain any `luxon` imports (#410)
package.json
@@ -1,6 +1,6 @@
{
"name": "rrule",
- "version": "2.6.5",
+ "version": "2.6.6",
"description": "JavaScript library for working with recurrence rules for calendar dates.",
"homepage": "http://jakubroztocil.github.io/rrule/",
"license": "BSD-3-Clause",
src/fake-luxon.ts
@@ -1,5 +1,5 @@
export const DateTime = {
- fromJSDate() {
- throw new TypeError();
+ fromJSDate () {
+ throw new TypeError()
}
-};
+}
0 commit comments