-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
Showing
73 changed files
with
7,572 additions
and
4,101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"extends": [ | ||
"peerigon/base" | ||
"peerigon" | ||
], | ||
"env": { | ||
"node": true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
}; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); |
Oops, something went wrong.