Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b0bec65
Migrate to Typescript
MichaelSolati Mar 8, 2018
41dff26
Fix additional mocha tests
MichaelSolati Mar 9, 2018
6eb4280
Fix events for GeoQuery class
MichaelSolati Mar 9, 2018
e8e2ff5
Fix to kill mocha at end of test
MichaelSolati Mar 9, 2018
51e76bd
feat(firestore): early implementation of geofirestore
MichaelSolati Mar 9, 2018
b73d800
test(firestore): implement test against realtime db to firestore
MichaelSolati Mar 10, 2018
dd93bcd
test(geofirestore): check location against array instead of object
MichaelSolati Mar 11, 2018
8c007d8
test: fix tests for geofire callbacks and implement for geofirestore
MichaelSolati Mar 11, 2018
ffb377a
fix(firestore): fix single location removal by set function
MichaelSolati Mar 11, 2018
4a0d312
refactor: change vars to consts and use in instead of hasOwnProperty
MichaelSolati Mar 11, 2018
e750c65
fix(firestore): set data from snapshot to variable to pass into decode
MichaelSolati Mar 11, 2018
261445e
refactor: renamed folders and small tweaks
MichaelSolati Mar 11, 2018
361fc5b
test: reintroduce coveralls support with tweaks
MichaelSolati Mar 11, 2018
aa7b084
test: increase mocha timeout
MichaelSolati Mar 11, 2018
b5da5ee
test(firestore): modify "'key_exited' registrations can be cancelled"…
MichaelSolati Mar 11, 2018
4c87223
Merge branch 'master' into typescript
MichaelSolati Apr 10, 2018
ffd9a60
chore: remove firestore support
MichaelSolati Apr 10, 2018
6b7ca8a
build: migrate build process to rollup
MichaelSolati May 6, 2018
69ebd9b
refactor(geofire): break out distance function
MichaelSolati May 10, 2018
a607d6e
refactor: introduce new interfaces and use maps instead of dicts
MichaelSolati Jun 12, 2018
154daa1
fix: lock node version for tests and revert geoFireGetKey logic
MichaelSolati Jun 12, 2018
2859aa8
chore: update dependencies and support firebase 5.x.x
MichaelSolati Jun 13, 2018
08eda8f
refactor(GeoQuery): revert to using dict instead of a Map
MichaelSolati Jun 23, 2018
7830059
refactor(GeoQueryState): create interface for callbacks
MichaelSolati Jun 28, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
dist/
node_modules/
bower_components/
tests/coverage/
coverage/
.DS_Store
.nyc_output/
.rpt2_cache
19 changes: 0 additions & 19 deletions .jshintrc

This file was deleted.

16 changes: 5 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
language: node_js
node_js:
- '0.12'
#- stable
- 8
sudo: false
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install -g bower
- npm install
- bower install
- npm install
script:
- npm run travis
after_script:
- cat ./tests/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
- npm run test
after_success:
- npm run coverage
42 changes: 0 additions & 42 deletions bower.json

This file was deleted.

7 changes: 0 additions & 7 deletions build/footer

This file was deleted.

14 changes: 0 additions & 14 deletions build/header

This file was deleted.

115 changes: 0 additions & 115 deletions gulpfile.js

This file was deleted.

Loading