Skip to content

Commit b1fd98d

Browse files
authored
2.0.x (#57)
* updated version match * Issue 3 migrate project from angular library to type script library (#7) * refactored how JS files are stored in the dist folder * updated readme build * adds documentation for operators * adds documentation for utils * updating README * updated README * updated * updated README * updated README * updated README * updated * updated tests to use Jest * updated README * adds lint to travis * Issue 8 readme should use lowercase id links for up (#9) * updated ID refs * updated ID * adds ifOp (#10) * adds counter operator (#14) * adds pluckDistinct operator (#15) * Issue 1 add a fork join first operator (#17) * adds forkJoinFirst utility * adds combineFirst and combineEarliest * Issue 13 add state value that emits state (#19) * rewrites unit tests to use promises * updated README * fixed README * updated counter docs * updated docs * updated docs * updated docs (#22) * Issue 20 add marbles to unit tests (#28) * adds marbles for counter * adds marbles for disabledWhen * updates all tests to use marbles * updated * updated tests * updated * fixed build error * Issue 23 add a before and after operator (#30) * adds before and after operators * adds beforeError and historyBuffer * Issue 2 add map first and map last operators (#31) * adds mapFirst * adds mapLast * updated mapLast docs * updated README * updated README * Issue 24 add a distinct deep equal (#32) * adds distinctDeepEqual * adds distinctArray * updated * removed index from coverage * updated coverage for distinctArray * updated coverage * improves coverage * fixed function order * Issue 27 update track status operator to support end notification (#34) * removes note in docs * renames trackStatus to loadFirst * updated README * updated * updated (#37) * fixed docs (#39) * updated (#40) * adds scanLatestFrom (#41) * adds scanLatestFrom * fixed let to const * removes combine first operator (#50) * Issue 43 add a round robin utility function (#53) * updates the build to include all files * adds a mergeTrim utility * adds mergeDelayError * adds roundRobin function * fixed lint errors * Issue 44 add a daisy chain utility (#54) * adds switchChain function * adds mergeChain * updated README (#55)
1 parent 4b01111 commit b1fd98d

File tree

135 files changed

+5822
-8307
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+5822
-8307
lines changed

.travis.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,26 @@
11
sudo: false
2-
32
language: node_js
4-
53
node_js:
64
- '10'
7-
85
branches:
96
only:
107
- master
11-
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
12-
8+
- /^\d+\.\d+(\.(\d+|x))?(-\S*)?$/
139
cache:
1410
directories:
1511
- node_modules
16-
1712
services:
1813
- xvfb
19-
2014
addons:
2115
chrome: stable
22-
16+
before_install:
17+
- npm update
2318
install:
2419
- npm set progress=false
2520
- npm install
2621
- npm install coveralls
2722

2823
script:
2924
- npm test
30-
- cat ./coverage/observables/lcov.info | ./node_modules/coveralls/bin/coveralls.js
25+
- npm run lint
26+
- npm run coveralls

0 commit comments

Comments
 (0)