Skip to content
This repository has been archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
4.0.0: added 'close()' to queues (closes #3), added 'eventIterable()' (
Browse files Browse the repository at this point in the history
…closes #4), added 'lazyMerge(..)' (closes #5), added full test coverage (closes #6), trying to fix action-npm-publish-workflow
  • Loading branch information
getify committed Sep 30, 2019
1 parent 6447e27 commit e494a6f
Show file tree
Hide file tree
Showing 8 changed files with 833 additions and 82 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
node-version: 12
registry-url: https://registry.npmjs.org/
scope: getify
- run: npm install && npm publish
- run: echo "repo_token: ${{secrets.coveralls_token}}" > .coveralls.yml
- run: npm install && npm --userconfig='/home/runner/work/_temp/.npmrc' publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.coveralls.yml
node_modules/
dist/
coverage/
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.npmrc
.npmignore
.gitignore
.coveralls.yml
.travis.yml
.github/
node_modules/
dist/
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
sudo: false
language: node_js
node_js:
- 12

git:
depth: 5

cache:
directories:
- node_modules

env:
- TEST_PACKAGE=true
branches:
only:
- master
161 changes: 146 additions & 15 deletions README.md

Large diffs are not rendered by default.

Loading

0 comments on commit e494a6f

Please sign in to comment.