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: nfl/react-helmet
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6.0.0
Choose a base ref
...
head repository: nfl/react-helmet
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6.1.0
Choose a head ref
Loading
Showing with 4,289 additions and 2,394 deletions.
  1. +1 −4 .travis.yml
  2. +124 −121 CHANGELOG.md
  3. +1 −1 README.md
  4. +2,840 −1,602 package-lock.json
  5. +12 −12 package.json
  6. +30 −19 src/Helmet.js
  7. +27 −22 src/HelmetUtils.js
  8. +163 −167 test/HelmetDeclarativeTest.js
  9. +143 −145 test/HelmetTest.js
  10. +948 −301 yarn.lock
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -9,14 +9,11 @@ addons:
- google-chrome-stable

node_js:
- 'node'
- "node"
- 12
- 11
- 10
- 9
- 8
- 7
- 6

before_install:
- export CHROME_BIN=/usr/bin/google-chrome
Loading