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: Sage/streamlinejs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a00294f9d64d52d7e415eadf2150da4265d37fc5
Choose a base ref
...
head repository: Sage/streamlinejs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fbd28601ddb00a337a39e044eb035b6b7890abc1
Choose a head ref
  • 12 commits
  • 3 files changed
  • 1 contributor

Commits on Apr 27, 2018

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    62ae26b View commit details

Commits on Apr 28, 2018

  1. force npm 5 in travis ci

    bjouhier committed Apr 28, 2018
    Copy the full SHA
    e946a68 View commit details

Commits on Jul 8, 2018

  1. npm update

    bjouhier committed Jul 8, 2018
    Copy the full SHA
    10f56b9 View commit details

Commits on Nov 10, 2018

  1. Copy the full SHA
    218eccf View commit details
  2. 2.1.4

    bjouhier committed Nov 10, 2018
    Copy the full SHA
    c547f12 View commit details
  3. Merge pull request #371 from Sage/upgrade-dependencies

    dependendies update to fix vulnerability in cached-path-relative
    bjouhier authored Nov 10, 2018
    Copy the full SHA
    ae21a3a View commit details
  4. Copy the full SHA
    7b56321 View commit details
  5. 2.1.5

    bjouhier committed Nov 10, 2018
    Copy the full SHA
    c0c7e63 View commit details

Commits on Feb 7, 2019

  1. upgrade dependencies

    bjouhier committed Feb 7, 2019
    Copy the full SHA
    2c6d6f7 View commit details
  2. 2.2.0

    bjouhier committed Feb 7, 2019
    Copy the full SHA
    0514601 View commit details
  3. downgraded babelify

    bjouhier committed Feb 7, 2019
    Copy the full SHA
    d62cb6d View commit details
  4. 2.2.1

    bjouhier committed Feb 7, 2019
    Copy the full SHA
    fbd2860 View commit details
Showing with 846 additions and 922 deletions.
  1. +2 −1 .travis.yml
  2. +835 −912 package-lock.json
  3. +9 −9 package.json
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: node_js
node_js:
- 10
- 8
- 6
- 4
before_install: if [[ `npm -v` != 5* ]]; then npm i -g npm@5; fi
sudo: false
Loading