Skip to content

Commit

Permalink
Adopt GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
eaviles committed Jul 12, 2019
1 parent d6d69fe commit e49e2da
Show file tree
Hide file tree
Showing 8 changed files with 284 additions and 364 deletions.
54 changes: 0 additions & 54 deletions .circleci/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/coverage
/package-lock.json
/reports
/templates
/tests
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.DS_Store
/.eslintcache
/coverage
/node_modules
/reports
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
*.test.js
/.*
/coverage
/docs
/reports
/templates
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ Verifies the dependencies listed in the package.json of the given directory.
| Param | Type | Description |
| ---------------- | ------------------- | ------------------------------------------------------------ |
| [options] | <code>Object</code> | Optional parameters. |
| [options] | <code>object</code> | Optional parameters. |
| [options.dir] | <code>string</code> | The path where to look for the package.json file. |
| [options.logger] | <code>Object</code> | A logger instance, with a similar API as the console object. |
| [options.logger] | <code>object</code> | A logger instance, with a similar API as the console object. |
## License
Expand Down
5 changes: 3 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,11 @@ function getPkgIds(filteredPkgs) {

/**
* Verifies the dependencies listed in the package.json of the given directory.
*
* @alias module:lifion-verify-deps
* @param {Object} [options] - Optional parameters.
* @param {object} [options] - Optional parameters.
* @param {string} [options.dir] - The path where to look for the package.json file.
* @param {Object} [options.logger] - A logger instance, with a similar API as the console object.
* @param {object} [options.logger] - A logger instance, with a similar API as the console object.
*/

async function verifyDeps({ dir, logger = console } = {}) {
Expand Down
Loading

0 comments on commit e49e2da

Please sign in to comment.