-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CI matrices and other chores (#494)
- Update node and browser matrices to supported versions - Refactor tests and filenames to natively work with .mjs modules - Fix development with older node versions
- Loading branch information
Showing
73 changed files
with
2,226 additions
and
2,070 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
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 +1,4 @@ | ||
require: '@babel/register' | ||
ignore: | ||
- 'test/qunit/*' | ||
- 'test/conf.js' | ||
- 'test/*.conf.js' |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"useBuiltIns": false, | ||
"loose": true, | ||
"targets": { | ||
"node": "10", | ||
"browsers": ["defaults", "maintained node versions"] | ||
} | ||
} | ||
] | ||
], | ||
"babelrcRoots": [".", "packages/*"] | ||
} |
Oops, something went wrong.