Skip to content
This repository has been archived by the owner on Nov 2, 2021. It is now read-only.

Bump bl from 1.2.2 to 1.2.3 #42

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
fef58d4
update CV
jul-sh Feb 3, 2020
18841dd
update about
jul-sh Jan 17, 2020
e6d85ed
simplify about me text
jul-sh Feb 6, 2020
6ab6cb2
add protocol to siteUrl to fix issue with newer gatsby versions
jul-sh Feb 6, 2020
ef9d4b6
update deps, move from yarn to npm
jul-sh Feb 6, 2020
8182fca
minor CV tweaks
jul-sh Mar 24, 2020
75873a0
Update deps
jul-sh Mar 2, 2020
ddff6ee
Remove reference to deleted gatsby starter
jul-sh Mar 17, 2020
0127e0e
Remove projects so I don't have to maintain that page anymore
jul-sh Mar 17, 2020
97b08db
edit CV brevity
jul-sh Mar 17, 2020
e1fe6c8
Amend agnostic-axe with note about maintainership
jul-sh Mar 19, 2020
8aa7cb8
Edit CV for clarity & brevity
jul-sh Apr 2, 2020
bd9921b
Patch heading order
jul-sh Apr 1, 2020
2f81414
Update about me to reflect new job
jul-sh Apr 2, 2020
d6e788b
rm unused classname
jul-sh Apr 10, 2020
eb2eab4
clarify UXE lens
jul-sh May 19, 2020
799269f
Move font size to the root
Apr 22, 2020
eda0d45
replace px units with rem
Apr 21, 2020
81678c8
tweakheading margins
jul-sh Apr 22, 2020
f644306
increase root text size for larger screens
jul-sh Apr 24, 2020
cc80395
edit CV for brevity
Apr 25, 2020
b79c9c6
Update LinkedIn link
May 2, 2020
0f5ec0b
Update CV bio
jul-sh May 19, 2020
1bc9bf8
Specify current project
jul-sh May 19, 2020
7864654
update about me for brevity
May 23, 2020
c955642
add webpack bundle introspection
jul-sh May 28, 2020
3384e26
Update deps
jul-sh May 28, 2020
5eefbe7
Use preact for bundle size
jul-sh May 28, 2020
c83bfb2
add engines to package.json
jul-sh May 28, 2020
c15513b
add keybase.txt
Aug 27, 2020
c2a40a8
verify second keybase domain
Aug 27, 2020
32b778e
minor copy changes
jul-sh Dec 16, 2020
4119dc1
Bump bl from 1.2.2 to 1.2.3
dependabot[bot] Dec 16, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,3 @@ The codebase is type-checked using **[TypeScript](https://www.typescriptlang.org
## Continuous Deployment 🚀

As soon as changes are merged into the `master` branch, the page will automatically be built by **[Netlify](https://netlify.com)**. It is then deployed as a static site using the Netlify CDN.

## Gatsby Starter ✨

For a skeleton Gatsby starter of this website, see: https://github.com/juliettepretot/gatsby-typescript
30 changes: 16 additions & 14 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
module.exports = {
siteMetadata: {
title: 'Juliette Pretot',
siteUrl: 'juliette.sh'
siteUrl: 'https://jul.sh',
},
plugins: [
'gatsby-plugin-preact',
'gatsby-plugin-typescript',
'gatsby-plugin-react-helmet',
'gatsby-plugin-catch-links',
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/src/pages`,
name: 'pages'
}
name: 'pages',
},
},
{
resolve: 'gatsby-transformer-remark',
Expand All @@ -23,33 +24,34 @@ module.exports = {
options: {
maxWidth: 1000,
linkImagesToOriginal: false,
backgroundColor: 'transparent'
}
backgroundColor: 'transparent',
},
},
'gatsby-remark-copy-linked-files',
{
resolve: 'gatsby-remark-smartypants',
options: {
dashes: 'oldschool'
}
}
]
}
dashes: 'oldschool',
},
},
],
},
},
{
resolve: 'gatsby-plugin-nprogress',
options: {
color: '#44B284',
showSpinner: false
}
showSpinner: false,
},
},
'gatsby-plugin-webpack-bundle-analyser-v2',
'gatsby-plugin-catch-links',
'gatsby-plugin-netlify-cache',
'gatsby-transformer-sqip',
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
'gatsby-plugin-offline',
'gatsby-plugin-styled-components',
'gatsby-plugin-netlify' // place as last in the array. ref: https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify#how-to-use
]
'gatsby-plugin-netlify', // place as last in the array. ref: https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify#how-to-use
],
}
Loading