Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add ES5 build target #51

Merged
merged 13 commits into from Oct 19, 2018
6 changes: 5 additions & 1 deletion .babelrc
@@ -1 +1,5 @@
{ "presets": ["es2015"] }
{
"presets": [
["@babel/preset-env"]
]
}
5 changes: 4 additions & 1 deletion .gitignore
Expand Up @@ -36,4 +36,7 @@ node_modules
.node_repl_history

# We don't check in the compiled lists. They are created upon npm publish and npm install.
build/tries
build/tries

# Don't include the build target directory.
lib
5 changes: 1 addition & 4 deletions .nycrc
Expand Up @@ -6,10 +6,7 @@
"functions": 100,
"branches": 100,
"include": [
"lib"
],
"exclude": [
"lib/build"
"src"
],
"reporter": [
"lcov",
Expand Down
4 changes: 3 additions & 1 deletion .travis.yml
Expand Up @@ -2,9 +2,11 @@ os:
- linux
language: node_js
node_js:
- "4"
- "6"
- "7"
- "8"
- "9"
- "10"

script:
- npm test
Expand Down