mirror of
https://github.com/kremalicious/portfolio.git
synced 2025-01-03 10:25:00 +01:00
more beta updates
This commit is contained in:
parent
7d73d1ab90
commit
2706eb77c7
24
package.json
24
package.json
@ -20,22 +20,20 @@
|
|||||||
"svg": "./scripts/svg.sh"
|
"svg": "./scripts/svg.sh"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"camel-case": "^3.0.0",
|
|
||||||
"file-saver": "^1.3.8",
|
"file-saver": "^1.3.8",
|
||||||
"gatsby": "^2.0.0-beta.3",
|
"gatsby": "^2.0.0-beta.6",
|
||||||
"gatsby-image": "next",
|
"gatsby-image": "^2.0.0-beta.2",
|
||||||
"gatsby-link": "next",
|
|
||||||
"gatsby-plugin-favicon": "^2.1.1",
|
"gatsby-plugin-favicon": "^2.1.1",
|
||||||
"gatsby-plugin-matomo": "^0.4.0",
|
"gatsby-plugin-matomo": "^0.4.0",
|
||||||
"gatsby-plugin-offline": "next",
|
"gatsby-plugin-offline": "^2.0.0-beta.2",
|
||||||
"gatsby-plugin-react-helmet": "next",
|
"gatsby-plugin-react-helmet": "^3.0.0-beta.2",
|
||||||
"gatsby-plugin-sass": "next",
|
"gatsby-plugin-sass": "^2.0.0-beta.2",
|
||||||
"gatsby-plugin-sharp": "next",
|
"gatsby-plugin-sharp": "^2.0.0-beta.2",
|
||||||
"gatsby-plugin-sitemap": "next",
|
"gatsby-plugin-sitemap": "^2.0.0-beta.2",
|
||||||
"gatsby-source-filesystem": "next",
|
"gatsby-source-filesystem": "^2.0.1-beta.3",
|
||||||
"gatsby-transformer-json": "next",
|
"gatsby-transformer-json": "^2.1.1-beta.2",
|
||||||
"gatsby-transformer-sharp": "next",
|
"gatsby-transformer-sharp": "^2.1.1-beta.2",
|
||||||
"gatsby-transformer-yaml": "next",
|
"gatsby-transformer-yaml": "^2.1.1-beta.2",
|
||||||
"giphy-js-sdk-core": "^1.0.3",
|
"giphy-js-sdk-core": "^1.0.3",
|
||||||
"graphql": "^0.13.2",
|
"graphql": "^0.13.2",
|
||||||
"intersection-observer": "^0.5.0",
|
"intersection-observer": "^0.5.0",
|
||||||
|
@ -2,7 +2,7 @@ import React, { Component, Fragment } from 'react'
|
|||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import withRouter from 'react-router-dom/withRouter'
|
import withRouter from 'react-router-dom/withRouter'
|
||||||
import TransitionGroup from 'react-transition-group/TransitionGroup'
|
import TransitionGroup from 'react-transition-group/TransitionGroup'
|
||||||
import { StaticQuery } from 'gatsby'
|
import { StaticQuery, graphql } from 'gatsby'
|
||||||
import Head from './atoms/Head'
|
import Head from './atoms/Head'
|
||||||
import Header from './organisms/Header'
|
import Header from './organisms/Header'
|
||||||
import Footer from './organisms/Footer'
|
import Footer from './organisms/Footer'
|
||||||
@ -107,16 +107,16 @@ const TemplateWrapper = ({ children, location }) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TransitionHandler.propTypes = {
|
TransitionHandler.propTypes = {
|
||||||
children: PropTypes.any,
|
children: PropTypes.any.isRequired,
|
||||||
location: PropTypes.object.isRequired
|
location: PropTypes.object.isRequired
|
||||||
}
|
}
|
||||||
|
|
||||||
Main.propTypes = {
|
Main.propTypes = {
|
||||||
children: PropTypes.any
|
children: PropTypes.any.isRequired
|
||||||
}
|
}
|
||||||
|
|
||||||
TemplateWrapper.propTypes = {
|
TemplateWrapper.propTypes = {
|
||||||
children: PropTypes.any,
|
children: PropTypes.any.isRequired,
|
||||||
location: PropTypes.object.isRequired
|
location: PropTypes.object.isRequired
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
|
import { graphql } from 'gatsby'
|
||||||
import Img from 'gatsby-image'
|
import Img from 'gatsby-image'
|
||||||
import './ProjectImage.scss'
|
import './ProjectImage.scss'
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import Link from 'gatsby-link'
|
import { Link } from 'gatsby'
|
||||||
import Img from 'gatsby-image'
|
import Img from 'gatsby-image'
|
||||||
import styles from './ProjectNav.module.scss'
|
import styles from './ProjectNav.module.scss'
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React, { PureComponent } from 'react'
|
import React, { PureComponent } from 'react'
|
||||||
import Link from 'gatsby-link'
|
import { Link } from 'gatsby'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import { FadeIn } from '../atoms/Animations'
|
import { FadeIn } from '../atoms/Animations'
|
||||||
import Networks from '../molecules/Networks'
|
import Networks from '../molecules/Networks'
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import Link from 'gatsby-link'
|
import { Link, graphql } from 'gatsby'
|
||||||
import Layout from '../components/Layout'
|
import Layout from '../components/Layout'
|
||||||
import ProjectImage from '../components/atoms/ProjectImage'
|
import ProjectImage from '../components/atoms/ProjectImage'
|
||||||
import FullWidth from '../components/atoms/FullWidth'
|
import FullWidth from '../components/atoms/FullWidth'
|
||||||
|
@ -2,6 +2,7 @@ import React, { Component } from 'react'
|
|||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import Helmet from 'react-helmet'
|
import Helmet from 'react-helmet'
|
||||||
import ReactMarkdown from 'react-markdown'
|
import ReactMarkdown from 'react-markdown'
|
||||||
|
import { graphql } from 'gatsby'
|
||||||
import Layout from '../components/Layout'
|
import Layout from '../components/Layout'
|
||||||
import Content from '../components/atoms/Content'
|
import Content from '../components/atoms/Content'
|
||||||
import FullWidth from '../components/atoms/FullWidth'
|
import FullWidth from '../components/atoms/FullWidth'
|
||||||
|
Loading…
Reference in New Issue
Block a user