-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: group renovate dev deps * docs: move programmatic measures to advance * docs: improve styling * docs: remove autogenerated indexes * docs: add other improvements
- Loading branch information
Showing
15 changed files
with
85 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["config:recommended"] | ||
"extends": ["config:recommended"], | ||
"packageRules": [ | ||
{ | ||
"matchDepTypes": ["devDependencies"], | ||
"matchUpdateTypes": ["patch", "minor"], | ||
"groupName": "devDependencies (non-major)", | ||
"automerge": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"label": "Advanced Usage", | ||
"position": 10, | ||
"link": { | ||
"type": "generated-index", | ||
"slug": "advanced-usage" | ||
} | ||
"position": 10 | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"label": "☁️ Flashlight Cloud (flashlight.dev)", | ||
"position": 5, | ||
"link": { | ||
"type": "generated-index", | ||
"slug": "/cloud" | ||
} | ||
"label": "☁️ Run in the Cloud", | ||
"position": 5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"label": "Guides", | ||
"position": 9, | ||
"link": { | ||
"type": "generated-index", | ||
"slug": "guides" | ||
} | ||
"position": 9 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"label": "⚛️ React Native", | ||
"position": 4, | ||
"link": { | ||
"type": "generated-index", | ||
"slug": "/guides/react-native" | ||
} | ||
"position": 4 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"label": "✨ Customize Reports", | ||
"position": 4, | ||
"link": { | ||
"type": "generated-index", | ||
"slug": "report" | ||
} | ||
"position": 4 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"label": "🤖 Automate measures", | ||
"position": 3, | ||
"link": { | ||
"type": "generated-index", | ||
"slug": "test" | ||
} | ||
"position": 3 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,31 @@ | |
/* eslint-disable import/no-unresolved */ | ||
import { themes } from "prism-react-renderer"; | ||
|
||
const googleFonts = [ | ||
{ | ||
tagName: "link", | ||
attributes: { | ||
rel: "preconnect", | ||
href: "https://fonts.googleapis.com", | ||
}, | ||
}, | ||
{ | ||
tagName: "link", | ||
attributes: { | ||
rel: "preconnect", | ||
href: "https://fonts.gstatic.com", | ||
crossorigin: "anonymous", | ||
}, | ||
}, | ||
{ | ||
tagName: "link", | ||
attributes: { | ||
rel: "stylesheet", | ||
href: "https://fonts.googleapis.com/css2?family=Fira+Code:[email protected]&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap", | ||
}, | ||
}, | ||
]; | ||
|
||
/** @type {import('@docusaurus/types').Config} */ | ||
const config = { | ||
title: "Flashlight", | ||
|
@@ -19,7 +44,6 @@ const config = { | |
defaultLocale: "en", | ||
locales: ["en"], | ||
}, | ||
|
||
presets: [ | ||
[ | ||
"classic", | ||
|
@@ -41,6 +65,7 @@ const config = { | |
], | ||
], | ||
|
||
headTags: [...googleFonts], | ||
scripts: [ | ||
{ | ||
src: "https://plausible.io/js/script.js", | ||
|
@@ -52,8 +77,7 @@ const config = { | |
themeConfig: | ||
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */ | ||
({ | ||
// TODO: Replace with your project's social card | ||
image: "img/docusaurus-social-card.jpg", | ||
image: "img/social.png", | ||
navbar: { | ||
title: "", | ||
logo: { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.