Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hupe1980 committed Jul 27, 2019
1 parent b3fe819 commit 6804848
Show file tree
Hide file tree
Showing 9 changed files with 1,137 additions and 826 deletions.
6 changes: 3 additions & 3 deletions examples/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "1.0.17",
"private": true,
"dependencies": {
"@material-ui/core": "4.2.0",
"@material-ui/styles": "4.2.0",
"gatsby": "2.13.21",
"@material-ui/core": "4.2.1",
"@material-ui/styles": "4.2.1",
"gatsby": "2.13.41",
"gatsby-theme-material-ui": "^1.0.0",
"react": "latest",
"react-dom": "latest",
Expand Down
6 changes: 3 additions & 3 deletions examples/using-redux/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "1.0.17",
"private": true,
"dependencies": {
"@material-ui/core": "4.2.0",
"@material-ui/styles": "4.2.0",
"gatsby": "2.13.21",
"@material-ui/core": "4.2.1",
"@material-ui/styles": "4.2.1",
"gatsby": "2.13.41",
"gatsby-theme-material-ui": "^1.0.0",
"react": "latest",
"react-dom": "latest",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
"eslint-config-prettier": "^5.0.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"lerna": "^3.15.0",
"lerna": "^3.16.4",
"prettier": "^1.18.2"
}
}
2 changes: 1 addition & 1 deletion packages/gatsby-theme-material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"gatsby-plugin-compile-es6-packages": "^1.1.0",
"gatsby-plugin-material-ui": "^2.1.4",
"gatsby-plugin-react-helmet": "^3.1.2",
"gatsby-plugin-webfonts": "^1.0.12"
"gatsby-plugin-webfonts": "^1.1.0"
},
"peerDependencies": {
"@material-ui/core": ">=4.0.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/material-ui-mdx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.2.0",
"@material-ui/styles": "^4.2.0",
"@mdx-js/mdx": "^1.0.27",
"@material-ui/core": "^4.2.1",
"@material-ui/styles": "^4.2.1",
"@mdx-js/mdx": "^1.1.0",
"@mdx-js/react": "^1.0.27",
"cross-env": "^5.2.0",
"react": "^16.8.6",
Expand Down
8 changes: 8 additions & 0 deletions www/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ module.exports = {
resolve: `gatsby-theme-material-ui-layout`,
options: {},
},
{
resolve: `gatsby-theme-material-ui-layout`,
options: {},
},
{
resolve: `gatsby-theme-netlify-cms`,
options: {},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
Expand Down
10 changes: 5 additions & 5 deletions www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
"version": "1.0.13",
"private": true,
"dependencies": {
"@material-ui/core": "4.2.0",
"@material-ui/core": "4.2.1",
"@material-ui/icons": "4.2.1",
"@material-ui/styles": "4.2.0",
"@material-ui/styles": "4.2.1",
"classnames": "^2.2.6",
"gatsby": "2.13.21",
"gatsby": "2.13.41",
"gatsby-plugin-google-analytics": "^2.1.4",
"gatsby-plugin-manifest": "^2.2.3",
"gatsby-plugin-manifest": "^2.2.4",
"gatsby-plugin-netlify": "^2.1.3",
"gatsby-plugin-offline": "^2.2.4",
"gatsby-plugin-performance-metrics": "^1.0.1",
"gatsby-theme-material-ui": "^1.0.0",
"gatsby-theme-material-ui-layout": "^0.0.10",
"gatsby-theme-netlify-cms": "^0.0.8",
"gatsby-theme-netlify-cms": "^1.0.0",
"react": "latest",
"react-dom": "latest",
"react-helmet": "5.2.1"
Expand Down
11 changes: 11 additions & 0 deletions www/src/pages/404.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from "react";

function NotFoundPage() {
return (
<div>
<span>NotFound</span>
</div>
);
}

export default NotFoundPage;
Loading

0 comments on commit 6804848

Please sign in to comment.