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

docs: new docs website using Astro + Starlight #1025

Merged
merged 21 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
14 changes: 9 additions & 5 deletions .github/workflows/publish-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install pnpm
zerok marked this conversation as resolved.
Show resolved Hide resolved
uses: pnpm/action-setup@v3
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
cache: 'pnpm'
Elfo404 marked this conversation as resolved.
Show resolved Hide resolved

- name: Install and Build
working-directory: docs
Expand All @@ -36,13 +40,13 @@ jobs:
# PRs: https://tanka.dev/pr-preview/pr-{number}/
PATH_PREFIX: "${{ github.event_name == 'pull_request' && format('/pr-preview/pr-{0}', github.event.number) || '' }}"
run: |
yarn install
yarn build
pnpm install
pnpm build

- name: Deploy main
if: github.event_name != 'pull_request'
uses: JamesIves/github-pages-deploy-action@v4
with:
with:
clean-exclude: pr-preview/
folder: ./docs/public/

Expand Down
80 changes: 13 additions & 67 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -1,75 +1,21 @@
.docz
# build output
dist/
# generated types
.astro/

# Logs
logs
*.log
# dependencies
node_modules/

# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
jspm_packages/

# Typescript v1 declaration files
typings/
# environment variables
.env
.env.production

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# dotenv environment variable files
.env*

# gatsby files
public
.cache

# Mac files
# macOS-specific files
.DS_Store

# Yarn
yarn-error.log
.pnp/
.pnp.js
# Yarn Integrity file
.yarn-integrity

# gatsby-remark-vscode extensions are required tho
node_modules/*
!/node_modules/vscext
!/node_modules/vscext/*
1 change: 0 additions & 1 deletion docs/.node-version

This file was deleted.

4 changes: 0 additions & 4 deletions docs/.prettierignore

This file was deleted.

7 changes: 0 additions & 7 deletions docs/.prettierrc

This file was deleted.

This file was deleted.

This file was deleted.

201 changes: 0 additions & 201 deletions docs/.vscext/Equinusocio.vsc-material-theme/extension/LICENSE.txt

This file was deleted.

Loading
Loading