Update dependencies

This commit is contained in:
Kyle Mathews 2016-06-04 13:55:11 -07:00
parent c13679f8d1
commit dfeb3ffd44
4 changed files with 15 additions and 19 deletions

View file

@ -30,9 +30,9 @@ class ReadNext extends React.Component {
<h6 <h6
style={{ style={{
margin: 0, margin: 0,
fontSize: fontSizeToMS(-1).fontSize, fontSize: fontSizeToMS(-0.5).fontSize,
lineHeight: fontSizeToMS(-1).lineHeight, lineHeight: fontSizeToMS(-0.5).lineHeight,
letterSpacing: -0.5, letterSpacing: -0.25,
}} }}
> >
READ THIS NEXT: READ THIS NEXT:

View file

@ -7,27 +7,28 @@
"url": "https://github.com/gatsbyjs/gatsby-starter-blog/issues" "url": "https://github.com/gatsbyjs/gatsby-starter-blog/issues"
}, },
"dependencies": { "dependencies": {
"babel-plugin-add-module-exports": "^0.2.0", "babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0", "babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0", "babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0", "babel-preset-stage-0": "^6.5.0",
"gatsby": "^0.11.0", "gatsby": "^0.11.2",
"history": "^2.1.1", "history": "^2.1.1",
"lodash": "^4.12.0", "lodash": "^4.13.1",
"moment": "^2.11.2", "moment": "^2.11.2",
"react-document-title": "^2.0.1", "react-document-title": "^2.0.1",
"react-responsive-grid": "^0.3.3", "react-responsive-grid": "^0.3.3",
"react-router": "^2.4.0", "react-router": "^2.4.1",
"safe-access": "^0.1.0", "safe-access": "^0.1.0",
"typography": "^0.7.0", "typography": "^0.8.3",
"underscore.string": "^3.2.3" "underscore.string": "^3.2.3"
}, },
"devDependencies": { "devDependencies": {
"babel-core": "^6.9.1",
"babel-preset-react-hmre": "^1.1.1", "babel-preset-react-hmre": "^1.1.1",
"eslint": "^2.9.0", "eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1", "eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0", "eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.0", "eslint-plugin-jsx-a11y": "^1.2.3",
"eslint-plugin-react": "^5.1.1", "eslint-plugin-react": "^5.1.1",
"gh-pages": "^0.11.0" "gh-pages": "^0.11.0"
}, },

View file

@ -15,8 +15,8 @@ class Template extends React.Component {
header = ( header = (
<h1 <h1
style={{ style={{
fontSize: fontSizeToMS(2.5).fontSize, fontSize: fontSizeToMS(1.5).fontSize,
lineHeight: fontSizeToMS(2.5).lineHeight, lineHeight: fontSizeToMS(1.5).lineHeight,
marginBottom: rhythm(1.5), marginBottom: rhythm(1.5),
}} }}
> >

View file

@ -3,11 +3,6 @@ import Typography from 'typography'
const options = { const options = {
baseFontSize: '18px', baseFontSize: '18px',
baseLineHeight: '27px', baseLineHeight: '27px',
modularScales: [
{
scale: 'minor third',
},
],
} }
const typography = new Typography(options) const typography = new Typography(options)