Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSolati committed Nov 25, 2020
1 parent 383990c commit d8bcb32
Show file tree
Hide file tree
Showing 9 changed files with 2,745 additions and 2,488 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ You can find a full list of our demos and view the code for each of them in the
Full documentation is available at [https://geofirestore.com](https://geofirestore.com). It mostly provides the same functionality as the Firestore library, in almost the same way as the Firestore library. Many questions can be addressed by looking at the [Firestore docs](https://firebase.google.com/docs/firestore/). However there are a few differences, and below is a little example of how to make a location based query.

```TypeScript
import * as firebase from 'firebase/app';
import firebase from 'firebase/app';
import 'firebase/firestore';
import * as geofirestore from 'geofirestore';

Expand Down
5,188 changes: 2,722 additions & 2,466 deletions package-lock.json

Large diffs are not rendered by default.

31 changes: 16 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Location-based querying and filtering using Firebase's Firestore",
"version": "4.3.0",
"scripts": {
"build": "rm -rf ./dist && rollup -c",
"build": "rimraf ./dist && rollup -c",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "typedoc --out docs/ src/",
"lint": "gts check",
Expand Down Expand Up @@ -52,29 +52,30 @@
"README.md"
],
"dependencies": {
"geofirestore-core": "^4.1.2"
"geofirestore-core": "^4.3.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"firebase-tools": "^8.4.2",
"firebase-tools": "^8.16.2",
"generate-changelog": "^1.8.0",
"geokit": "^1.1.0",
"gts": "^2.0.2",
"jsdom": "^16.2.2",
"gts": "^3.0.2",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^7.2.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"protobufjs": "github:michaelsolati/protobuf.js",
"rollup": "^2.14.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-node": "^8.10.2",
"typedoc": "0.15.0",
"typescript": "3.6.5"
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-node": "^9.0.0",
"typedoc": "0.19.2",
"typescript": "4.0.5"
},
"mocha": {
"extension": [
Expand Down
2 changes: 1 addition & 1 deletion test/GeoCollectionReference.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as chai from 'chai';
import * as firebase from 'firebase/app';
import firebase from 'firebase/app';
import 'firebase/firestore';

import {GeoCollectionReference} from '../src/GeoCollectionReference';
Expand Down
2 changes: 1 addition & 1 deletion test/GeoDocumentReference.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as chai from 'chai';
import * as firebase from 'firebase/app';
import firebase from 'firebase/app';
import 'firebase/firestore';

import {GeoCollectionReference} from '../src/GeoCollectionReference';
Expand Down
2 changes: 1 addition & 1 deletion test/GeoQuery.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as chai from 'chai';
import * as firebase from 'firebase/app';
import firebase from 'firebase/app';
import {encodeDocumentAdd} from 'geofirestore-core';
import {hash} from 'geokit';

Expand Down
2 changes: 1 addition & 1 deletion test/GeoTransaction.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as chai from 'chai';
import * as firebase from 'firebase/app';
import firebase from 'firebase/app';

import {GeoTransaction} from '../src';
import {
Expand Down
2 changes: 1 addition & 1 deletion test/GeoWriteBatch.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as chai from 'chai';
import * as firebase from 'firebase/app';
import firebase from 'firebase/app';

import {GeoWriteBatch} from '../src/GeoWriteBatch';
import {
Expand Down
2 changes: 1 addition & 1 deletion test/common.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as chai from 'chai';
import * as firebase from 'firebase/app';
import firebase from 'firebase/app';
import 'firebase/firestore';
import {encodeDocumentAdd} from 'geofirestore-core';
import {distance} from 'geokit';
Expand Down

0 comments on commit d8bcb32

Please sign in to comment.