Skip to content

Commit

Permalink
Update dependencies except for gitexec. (#61)
Browse files Browse the repository at this point in the history
Also:

* switch to `^` for all deps
* add missing properties in package.json
* add lock file
  • Loading branch information
XhmikosR authored Oct 4, 2019
1 parent 90ae723 commit a4191bb
Show file tree
Hide file tree
Showing 5 changed files with 2,346 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- run: git --version

- name: Install npm dependencies
run: npm install
run: npm ci
env:
CI: true

Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules
package-lock.json
.DS_Store
2 changes: 1 addition & 1 deletion collect-commit-labels.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function collectCommitLabels (list, callback) {
})
cache[key].then((val) => onFetch(null, val), (err) => onFetch(err))
}, 15)
q.drain = callback
q.drain(callback)
q.push(sublist)
})
}
Expand Down
Loading

0 comments on commit a4191bb

Please sign in to comment.