Skip to content
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
16 changes: 15 additions & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,27 @@ on:
type: boolean

jobs:
optimize_ci:
runs-on: ubuntu-latest
outputs:
skip: ${{ steps.check_skip.outputs.skip }}
steps:
- name: Optimize CI
id: check_skip
uses: withgraphite/graphite-ci-action@main
with:
graphite_token: ${{ secrets.GRAPHITE_CI_OPTIMIZER_TOKEN }}

typescript:
needs: [optimize_ci]
if: needs.optimize_ci.outputs.skip == 'false'
uses: skyleague/node-standards/.github/workflows/reusable-typescript.yml@main
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

release:
needs: [typescript]
needs: [typescript,optimize_ci]
if: needs.optimize_ci.outputs.skip == 'false'
uses: skyleague/node-standards/.github/workflows/reusable-release.yml@main
with:
build_artifact_name: ${{ needs.typescript.outputs.artifact-name }}
Expand Down
2 changes: 1 addition & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
npx --no -- commitlint --edit $1
./node_modules/.bin/commitlint --edit $1
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
npx --no -- lint-staged --concurrent=true --allow-empty
./node_modules/.bin/lint-staged --allow-empty
12 changes: 0 additions & 12 deletions dependabot.yml

This file was deleted.

3 changes: 3 additions & 0 deletions docs/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ const config: Config = {
darkTheme: themes.dracula,
},
},
future: {
experimental_faster: true,
},
}

export default config
9 changes: 5 additions & 4 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "^3.3.2",
"@docusaurus/preset-classic": "^3.3.2",
"@docusaurus/core": "^3.6.3",
"@docusaurus/preset-classic": "^3.6.3",
"@docusaurus/faster": "^3.6.3",
"@mdx-js/react": "^3.0.1",
"prism-react-renderer": "^2.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.3.2",
"docusaurus-plugin-typedoc-api": "^4.2.0"
"@docusaurus/module-type-aliases": "^3.6.3",
"docusaurus-plugin-typedoc-api": "^4.4.0"
},
"browserslist": {
"production": [">0.5%", "not dead", "not op_mini all"],
Expand Down
38 changes: 19 additions & 19 deletions docs/src/css/custom.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
:root {
--ifm-color-primary: hsl(217, 63%, 46%);
--ifm-color-primary-dark: hsl(217, 63%, 44%);
--ifm-color-primary-darker: hsl(217, 63%, 42%);
--ifm-color-primary-darkest: hsl(217, 63%, 40%)b;
--ifm-color-primary-light: hsl(217, 63%, 48%);
--ifm-color-primary-lighter: hsl(217, 63%, 50%);
--ifm-color-primary-lightest: hsl(217, 63%, 52%);
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
--ifm-color-primary: hsl(217, 63%, 46%);
--ifm-color-primary-dark: hsl(217, 63%, 44%);
--ifm-color-primary-darker: hsl(217, 63%, 42%);
--ifm-color-primary-darkest: hsl(217, 63%, 40%) b;
--ifm-color-primary-light: hsl(217, 63%, 48%);
--ifm-color-primary-lighter: hsl(217, 63%, 50%);
--ifm-color-primary-lightest: hsl(217, 63%, 52%);
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}

[data-theme='dark'] {
--ifm-color-primary: #eaa22f;
--ifm-color-primary-dark: hsl(217, 63%, 46%);
--ifm-color-primary-darker: hsl(217, 63%, 44%);
--ifm-color-primary-darkest: hsl(217, 63%, 42%);
--ifm-color-primary-light: hsl(217, 54%, 73%);
--ifm-color-primary-lighter: hsl(217, 54%, 75%);
--ifm-color-primary-lightest: hsl(217, 54%, 77%);
--docusaurus-highlighted-code-line-bg: #232933;
}
[data-theme="dark"] {
--ifm-color-primary: #eaa22f;
--ifm-color-primary-dark: hsl(217, 63%, 46%);
--ifm-color-primary-darker: hsl(217, 63%, 44%);
--ifm-color-primary-darkest: hsl(217, 63%, 42%);
--ifm-color-primary-light: hsl(217, 54%, 73%);
--ifm-color-primary-lighter: hsl(217, 54%, 75%);
--ifm-color-primary-lightest: hsl(217, 54%, 77%);
--docusaurus-highlighted-code-line-bg: #232933;
}
Empty file removed examples/.gitkeep
Empty file.
2 changes: 1 addition & 1 deletion lint-staged.config.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
'*': ['biome check --no-errors-on-unmatched --files-ignore-unknown=true --apply-unsafe'],
'*': ['biome check --no-errors-on-unmatched --files-ignore-unknown=true --write --unsafe'],
}
Loading
Loading