Skip to content

Commit

Permalink
chore: Update deps (#76)
Browse files Browse the repository at this point in the history
* Update linter and fix linting issues

* Update dependencies in package.json

* Use pify instead of util.promisify

* Update jest

* Update dependencies

* Update yargs

* Update babel and rollup

* Fix tests for Node 6

* Update linter and fix linting issues

* Re-add package-lock.json
  • Loading branch information
jhnns authored Oct 3, 2018
1 parent e766fb0 commit fe74c4a
Show file tree
Hide file tree
Showing 73 changed files with 7,572 additions and 4,101 deletions.
44 changes: 0 additions & 44 deletions .babelrc

This file was deleted.

2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": [
"peerigon/base"
"peerigon"
],
"env": {
"node": true
Expand Down
25 changes: 25 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/* eslint-disable import/unambiguous, strict */
"use strict";

module.exports = function (api) {
api.cache(() => process.env.NODE_ENV);

return {
presets: [
[
"@babel/preset-env",
{
targets: {
node: 6,
},
},
],
],
plugins: [
"@babel/plugin-transform-runtime",
],
sourceMaps: "inline",
retainLines: true,
};
};

2 changes: 1 addition & 1 deletion bin/updtr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env node

require("../dist"); // eslint-disable-line
require("../dist");
Loading

0 comments on commit fe74c4a

Please sign in to comment.