Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into use-websites-server
Browse files Browse the repository at this point in the history
  • Loading branch information
yathomasi committed Oct 14, 2022
1 parent 3266f00 commit 566ec73
Show file tree
Hide file tree
Showing 4 changed files with 208 additions and 252 deletions.
24 changes: 16 additions & 8 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ const siteMetadata = {

const plugins = [
'gatsby-plugin-eslint',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: `${__dirname}/src/images`
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: path.join(__dirname, 'static', 'img')
}
},
{
resolve: '@dvcorg/gatsby-theme-iterative',
options: {
Expand Down Expand Up @@ -93,14 +107,8 @@ const plugins = [
]
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: `${__dirname}/src/images`
}
},
'gatsby-plugin-meta-redirect'
'gatsby-plugin-meta-redirect',
'@sentry/gatsby'
]

module.exports = {
Expand Down
21 changes: 10 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,26 @@
"prepare": "husky install"
},
"dependencies": {
"@dvcorg/gatsby-theme-iterative": "0.1.15",
"@dvcorg/gatsby-theme-iterative": "0.1.16",
"@dvcorg/websites-server": "^0.0.10",
"@octokit/graphql": "5.0.1",
"@sentry/gatsby": "7.12.1",
"@sentry/gatsby": "^7.13.0",
"@svgr/webpack": "6.3.1",
"autoprefixer": "10.4.11",
"autoprefixer": "10.4.12",
"classnames": "2.3.2",
"express": "4.18.1",
"gatsby": "4.23.0",
"gatsby-plugin-image": "2.23.0",
"gatsby-plugin-manifest": "4.23.0",
"gatsby": "4.23.1",
"gatsby-plugin-image": "2.23.1",
"gatsby-plugin-manifest": "4.23.1",
"gatsby-plugin-meta-redirect": "1.1.1",
"gatsby-plugin-postcss": "5.23.0",
"gatsby-plugin-react-helmet": "5.23.0",
"gatsby-plugin-remove-serviceworker": "1.0.0",
"gatsby-plugin-sharp": "4.23.0",
"gatsby-plugin-svgr": "3.0.0-beta.0",
"gatsby-plugin-typescript": "4.23.0",
"gatsby-remark-images": "6.23.0",
"gatsby-remark-images": "6.23.1",
"gatsby-source-filesystem": "4.23.0",
"gatsby-transformer-sharp": "4.23.0",
"gatsby-transformer-sharp": "4.23.1",
"node-cache": "5.1.2",
"npm-run-all": "4.1.5",
"postcss": "8.4.16",
Expand All @@ -56,8 +55,8 @@
},
"devDependencies": {
"@types/react-helmet": "6.1.5",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"babel-eslint": "10.1.0",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
Expand Down
4 changes: 4 additions & 0 deletions sentry.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import sentryConfig from '@dvcorg/gatsby-theme-iterative/sentry-config'
import * as Sentry from '@sentry/gatsby'

Sentry.init(sentryConfig)
Loading

0 comments on commit 566ec73

Please sign in to comment.