-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
251 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
{ | ||
"presets": [ | ||
"@babel/preset-env" | ||
["@babel/preset-env", { | ||
"targets": [ | ||
"defaults", | ||
"maintained node versions" | ||
] | ||
}] | ||
], | ||
"plugins": [ | ||
"@babel/plugin-transform-class-properties", | ||
"@babel/plugin-transform-runtime" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
/coverage | ||
/dist | ||
/lib | ||
/types |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
/.idea | ||
/coverage | ||
/dist | ||
/lib | ||
/node_modules | ||
/types |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
/* eslint-env node */ | ||
'use strict'; // eslint-disable-line | ||
|
||
// Node has an Intl object, but doesn't ship with any locale information, so we | ||
// need to patch parts of it to work as it does in the browser. | ||
require('@formatjs/intl-locale/polyfill'); | ||
require('@formatjs/intl-numberformat/polyfill'); | ||
require('@formatjs/intl-numberformat/locale-data/en-NZ'); | ||
import '@formatjs/intl-locale/polyfill'; | ||
import '@formatjs/intl-numberformat/polyfill'; | ||
import '@formatjs/intl-numberformat/locale-data/en-NZ'; |
Oops, something went wrong.