Skip to content

Commit

Permalink
chore: Update development setup
Browse files Browse the repository at this point in the history
BREAKING CHANGE: extract-loader does now officially only support node >= 4. No guarantee for older node versions.
  • Loading branch information
jhnns committed Jan 12, 2018
1 parent e6b3502 commit cf5115c
Show file tree
Hide file tree
Showing 10 changed files with 8,785 additions and 27 deletions.
17 changes: 16 additions & 1 deletion .babelrc
@@ -1,3 +1,18 @@
{
"presets": ["es2015"]
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
]
],
"sourceMaps": true,
"env": {
"test": {
"plugins": ["istanbul"]
}
}
}
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -36,3 +36,6 @@ node_modules

# Optional REPL history
.node_repl_history

# NYC covergae information
.nyc_output
16 changes: 16 additions & 0 deletions .nycrc
@@ -0,0 +1,16 @@
{
"reporter": [
"lcov",
"text"
],
"include": [
"src"
],
"lines": 97,
"statements": 97,
"functions": 93,
"branches": 87,
"check-coverage": true,
"sourceMap": false,
"instrument": false
}
5 changes: 2 additions & 3 deletions .travis.yml
Expand Up @@ -2,10 +2,9 @@ os:
- linux
language: node_js
node_js:
- "4"
- "6"
- "7"
- "node"
- "lts/*"
- "4"

script:
- npm test
Expand Down

0 comments on commit cf5115c

Please sign in to comment.