Skip to content

Commit

Permalink
feat: annouce release (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
yathomasi committed Jul 23, 2024
1 parent 8e4df87 commit ade5958
Show file tree
Hide file tree
Showing 9 changed files with 998 additions and 432 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
}
},
"rules": {
"react/react-in-jsx-scope": "off",
"@typescript-eslint/naming-convention": [
"error",
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"node": ">=18.x <=20.x"
},
"dependencies": {
"@dvcorg/gatsby-theme-iterative": "0.3.10",
"@dvcorg/gatsby-theme-iterative": "0.3.20",
"@dvcorg/websites-server": "^0.1.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@ import { loadResource } from '@dvcorg/gatsby-theme-iterative/src/utils/front/res

import * as styles from '@dvcorg/gatsby-theme-iterative/src/components/Documentation/Layout/SearchForm/styles.module.css'

declare global {
// eslint-disable-next-line @typescript-eslint/naming-convention
interface Window {
docsearch?: (opts: object) => void
}
}

const apiKey = '3e17d424c7a90fede27b848fb01c0dc2'
const appId = '1O03WAGL0D'
const indexName = 'cml'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import MainLayout from '@dvcorg/gatsby-theme-iterative/src/components/MainLayout'

import ModesProvider from '../../../../components/organisms/SwitchableMode/Provider'
Expand Down
2 changes: 0 additions & 2 deletions src/components/pages/NotFound/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react'

import * as styles from './styles.module.css'

const NotFound = () => (
Expand Down
1 change: 0 additions & 1 deletion src/pages/404.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import MainLayout from '@dvcorg/gatsby-theme-iterative/src/components/MainLayout'
import { PageProps } from 'gatsby'

Expand Down
52 changes: 0 additions & 52 deletions src/typings.ts

This file was deleted.

15 changes: 10 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"compilerOptions": {
"target": "es5",
"target": "ESNext",
"module": "commonjs",
"resolveJsonModule": true,
"lib": ["dom", "es2015", "es2017"],
"jsx": "react",
"lib": ["dom", "ESNext"],
"jsx": "react-jsx",
"sourceMap": true,
"strict": true,
"noImplicitAny": true,
Expand All @@ -18,7 +18,12 @@
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"alwaysStrict": true
"alwaysStrict": true,
"noEmit": true
},
"include": ["./src/**/*", "./*.js"]
"include": [
"node_modules/@dvcorg/gatsby-theme-iterative",
"./src/**/*",
"./*.js"
]
}
Loading

0 comments on commit ade5958

Please sign in to comment.