Skip to content

Commit

Permalink
Add Node 4 back (#777)
Browse files Browse the repository at this point in the history
* Add Node 4 back

Related: #767 (comment)
and #766

* Remove node 4 from CI as jest doesn't support it

* Drop node4 for dev. Enable for published

* fix coverage calculation
  • Loading branch information
boopathi authored Jan 14, 2018
1 parent 879f25e commit ac57623
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"env",
{
"targets": {
"node": 6
"node": 4
},
"include": ["transform-async-to-generator"],
"exclude": ["transform-regenerator"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Babili has been now renamed to Babel-Minify :).

## Requirements

- node >= 6
- node >= 4
- babel >= 6.20.0

## Why
Expand Down
2 changes: 1 addition & 1 deletion docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Requirements

+ node >= 4
+ node >= 6
+ [yarn](https://yarnpkg.com) >= 1.0.0 (with yarn workspaces support)

## Clone
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,11 @@
"packages",
"utils"
],
"coverageDirectory": "./coverage/"
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/lib/"
]
},
"workspaces": [
"packages/*",
Expand Down

0 comments on commit ac57623

Please sign in to comment.