Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Various fixes about TypeScript, typos, comments #235

Merged
merged 5 commits into from
Jan 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 LekoArts
Copyright (c) 2020 LekoArts

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 4 additions & 0 deletions examples/cara/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ require(`dotenv`).config({

module.exports = {
siteMetadata: {
// You can overwrite values here that are used for the SEO component
// Of course you can also add new values here to query them like usual
// See all options: https://github.com/LekoArts/gatsby-themes/blob/master/themes/gatsby-theme-cara/gatsby-config.js
siteTitleAlt: `Cara - Gatsby Starter Portfolio`,
},
plugins: [
{
resolve: `@lekoarts/gatsby-theme-cara`,
// See the theme's README for all available options
options: {},
},
{
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"@types/react-helmet": "^5.0.15",
"@types/styled-system": "^5.1.4",
"@types/testing-library__cypress": "^5.0.1",
"@types/testing-library__jest-dom": "^5.0.0",
"@types/theme-ui": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
Expand Down
2 changes: 1 addition & 1 deletion plop-templates/example/LICENSE.hbs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 LekoArts
Copyright (c) 2020 LekoArts

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion plop-templates/theme/use-site-metadata.tsx.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { graphql, useStaticQuery } from "gatsby"
type Props = {
site: {
siteMetadata: {
[key: string]: string
[key: string]: unknown
}
}
}
Expand Down
Loading