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: jaredatron/simple-react-router
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: jaredatron/simple-react-router
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: upgrade-all-the-things
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 1 commit
  • 5 files changed
  • 1 contributor

Commits on Feb 21, 2018

  1. WIP

    jaredatron committed Feb 21, 2018
    Copy the full SHA
    03cd534 View commit details
Showing with 678 additions and 480 deletions.
  1. +1 −8 .babelrc
  2. +605 −430 package-lock.json
  3. +18 −19 package.json
  4. +37 −11 test/.setup.js
  5. +17 −12 test/simple-react-router-test.js
9 changes: 1 addition & 8 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
{
presets: [
'es2015',
'es2016',
'env',
'react'
],
plugins: [
'transform-class-properties',
'transform-object-rest-spread',
['transform-regenerator', {async: false}],
['transform-runtime', {
helpers: false,
polyfill: false,
regenerator: true,
}]
]
}
Loading