Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: conveyal/lonlat
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.3.0
Choose a base ref
...
head repository: conveyal/lonlat
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.4.0
Choose a head ref
  • 8 commits
  • 6 files changed
  • 2 contributors

Commits on Mar 22, 2017

  1. Copy the full SHA
    7e8d7d1 View commit details

Commits on Mar 23, 2017

  1. Merge pull request #15 from conveyal/doc-fix

    Correct parameter types for isEqual, print
    evansiroky authored Mar 23, 2017
    Copy the full SHA
    271e0c8 View commit details

Commits on Oct 16, 2018

  1. Copy the full SHA
    7373a47 View commit details

Commits on Oct 17, 2018

  1. Merge pull request #17 from conveyal/update-deps

    Update dependencies
    trevorgerhardt authored Oct 17, 2018
    Copy the full SHA
    5f23521 View commit details
  2. Copy the full SHA
    a4e04f1 View commit details

Commits on Oct 18, 2018

  1. Copy the full SHA
    ebd5994 View commit details
  2. Merge pull request #18 from conveyal/pixel-conversions

    Add pixel conversion functions
    trevorgerhardt authored Oct 18, 2018
    Copy the full SHA
    60d4299 View commit details

Commits on Oct 19, 2018

  1. Copy the full SHA
    91240d4 View commit details
Showing with 11,989 additions and 78 deletions.
  1. +5 −7 .travis.yml
  2. +230 −60 README.md
  3. +142 −3 index.js
  4. +20 −0 index.test.js
  5. +13 −8 package.json
  6. +11,579 −0 yarn.lock
12 changes: 5 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
sudo: false
language: node_js
cache: yarn
notifications:
email: false
node_js:
- '6'
- '8'
before_install:
- npm i -g codecov
- yarn global add codecov
script:
- npm run lint
- npm run lint-docs
- npm run cover
- yarn run cover
- codecov
after_success:
- npm run semantic-release
- yarn run travis-deploy-once "yarn run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/
Loading