Skip to content
This repository was archived by the owner on Jun 28, 2023. It is now read-only.
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: coreyja/coreyja-blog
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 49baccff479706166b1537f3218b87cb17d8941a
Choose a base ref
..
head repository: coreyja/coreyja-blog
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 93b9ddd6169413173cf1d2fc19cdb197d4078c75
Choose a head ref
Showing with 17,427 additions and 10,135 deletions.
  1. +2 −2 .circleci/config.yml
  2. +1 −1 gatsby/gatsby-config.ts
  3. +16,216 −9,931 schema.json
  4. +2 −2 src/components/bio.tsx
  5. +1 −1 src/components/blogLayout.module.scss
  6. +18 −0 src/components/blogPost.module.scss
  7. +66 −56 src/components/blogPost.tsx
  8. +22 −8 src/components/seo.tsx
  9. +1,095 −125 src/types/generated.tsx
  10. +4 −9 yarn.lock
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ commands:
jobs:
test:
parallelism: 1
resource_class: small
resource_class: large
docker:
- image: circleci/node:14.0.0
steps:
@@ -26,7 +26,7 @@ jobs:
- run: yarn build
deploy:
parallelism: 1
resource_class: small
resource_class: large
docker:
- image: circleci/node:14.0.0
steps:
2 changes: 1 addition & 1 deletion gatsby/gatsby-config.ts
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ module.exports = {
? {
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/../../coreyja-blog-posts/published`,
path: `${__dirname}/../../../writing/blog-posts`,
name: `local-private-blog`,
},
}
Loading