Skip to content

Commit 0cbc971

Browse files
authored
Merge pull request #2 from rmdm/greenkeeper/initial
Update dependencies to enable Greenkeeper 🌴
2 parents 7f39402 + 66854bc commit 0cbc971

File tree

7 files changed

+8001
-4932
lines changed

7 files changed

+8001
-4932
lines changed

.babelrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"presets": [ "es2015" ],
3-
"plugins": [ "transform-runtime", "add-module-exports" ],
2+
"presets": [ "@babel/preset-env" ],
3+
"plugins": [ "@babel/transform-runtime", "add-module-exports" ],
44
"env": {
55
"test": {
66
"plugins": [ "istanbul" ]

.nycrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require": [
3-
"babel-register"
3+
"@babel/register"
44
],
55
"sourceMap": false,
66
"instrument": false,

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: node_js
22
node_js:
3-
- "8.8"
4-
- "6.1"
5-
- "4.4"
3+
- "8"
4+
- "10"
5+
- "12"
66

77
script: "npm run ci"
88
after_script: "cat ./coverage/lcov.info | coveralls"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![Build Status](https://travis-ci.org/rmdm/nodups.svg?branch=master)](https://travis-ci.org/rmdm/nodups)
2-
[![Coverage Status](https://coveralls.io/repos/github/rmdm/nodups/badge.svg?branch=master)](https://coveralls.io/github/rmdm/nodups?branch=master)
2+
[![Coverage Status](https://coveralls.io/repos/github/rmdm/nodups/badge.svg?branch=master)](https://coveralls.io/github/rmdm/nodups?branch=master) [![Greenkeeper badge](https://badges.greenkeeper.io/rmdm/nodups.svg)](https://greenkeeper.io/)
33

44
nodups
55
=====

karma.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ module.exports = function(config) {
3838
[
3939
'babelify',
4040
{
41-
presets: ['es2015'],
41+
presets: ['@babel/preset-env'],
42+
plugins: [['@babel/plugin-transform-runtime', { corejs: 3 }]]
4243
}
4344
]
4445
],

0 commit comments

Comments
 (0)