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: knegusen/redux-test-utils
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.0
Choose a base ref
...
head repository: knegusen/redux-test-utils
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.0
Choose a head ref
  • 12 commits
  • 14 files changed
  • 1 contributor

Commits on Jun 26, 2019

  1. Upgrade dependencies

    knegusen committed Jun 26, 2019
    Copy the full SHA
    8f5cd69 View commit details
  2. Upgrade np

    knegusen committed Jun 26, 2019
    Copy the full SHA
    1c1ebea View commit details
  3. Remove support for node 4

    Add missing dependency eslint-plugin-import
    knegusen committed Jun 26, 2019
    Copy the full SHA
    e5a6eab View commit details

Commits on Jun 27, 2019

  1. Update package.lock

    knegusen committed Jun 27, 2019
    Copy the full SHA
    5185c13 View commit details
  2. Update node version

    knegusen committed Jun 27, 2019
    Copy the full SHA
    3f55c27 View commit details

Commits on Oct 27, 2019

  1. Port js to typescript

    knegusen committed Oct 27, 2019
    Copy the full SHA
    5782fac View commit details
  2. Remove redundant packages

    knegusen committed Oct 27, 2019
    Copy the full SHA
    b1af726 View commit details
  3. Remove ts-ignore in tests

    knegusen committed Oct 27, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    edb0338 View commit details
  4. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    bc976de View commit details
  5. Copy the full SHA
    28544b3 View commit details
  6. Copy the full SHA
    70e1695 View commit details

Commits on Apr 15, 2020

  1. Change min

    knegusen committed Apr 15, 2020
    Copy the full SHA
    aeb1fed View commit details
7 changes: 3 additions & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"env": {
"browser": true,
"jasmine": true,
"jest": true
},
"extends": "airbnb-base",
"parser": "babel-eslint"
}
"extends": "plugin:@typescript-eslint/recommended",
"parser": "@typescript-eslint/parser"
}
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: node_js
node_js:
- '12'
- '10'
- '8'
- '6'
- '4'
Loading