-
Notifications
You must be signed in to change notification settings - Fork 660
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into jmurzy-defaultTitle
* master: (22 commits) Remove index.js file Remove babel-related dependencies Update README.md Consistent server-side test case Clarify comment Correct count in README Remove use of Set Revert iteration changes Remove Object.keys polyfill (supported since IE9) Remove Array.includes polyfill Remove Object.is polyfill Remove Map polyfill Bump eslint Use undefined for valueless attributes Add support for html attributes Add example in Readme Add tests for script.innerHTML Handle innerHTML attribute validation Fix eslint warnings / errors Update babel-eslint ...
- Loading branch information
Showing
7 changed files
with
349 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "react-helmet", | ||
"description": "A document head manager for React", | ||
"version": "2.3.1", | ||
"main": "./lib/index.js", | ||
"main": "./lib/Helmet.js", | ||
"author": "NFL <[email protected]>", | ||
"contributors": [ | ||
"Chris Welch <[email protected]>" | ||
|
@@ -25,27 +25,29 @@ | |
"base" | ||
], | ||
"dependencies": { | ||
"core-js": "2.0.3", | ||
"deep-equal": "1.0.1", | ||
"invariant": "2.2.0", | ||
"object-assign": "^4.0.1", | ||
"react-side-effect": "1.0.2", | ||
"shallowequal": "0.2.2", | ||
"warning": "2.1.0" | ||
}, | ||
"devDependencies": { | ||
"babel": "5.8.34", | ||
"babel-eslint": "4.1.5", | ||
"babel-eslint": "5.0.0", | ||
"babel-loader": "5.4.0", | ||
"chai": "3.4.1", | ||
"chalk": "1.1.1", | ||
"del": "2.2.0", | ||
"eslint": "1.10.3", | ||
"eslint-config-nfl": "4.0.2", | ||
"eslint-plugin-react": "3.15.0", | ||
"eslint": "2.4.0", | ||
"eslint-config-nfl": "6.1.0", | ||
"eslint-plugin-react": "4.2.2", | ||
"estraverse": "^4.2.0", | ||
"estraverse-fb": "^1.3.1", | ||
"gulp": "3.9.0", | ||
"gulp-cached": "1.1.0", | ||
"gulp-debug": "2.1.2", | ||
"gulp-eslint": "1.1.1", | ||
"gulp-eslint": "2.0.0", | ||
"gulp-if": "2.0.0", | ||
"gulp-notify": "2.2.0", | ||
"gulp-util": "3.0.7", | ||
|
Oops, something went wrong.