Skip to content

Commit 3471757

Browse files
authoredFeb 15, 2023
Introduce Nextra-powered Docs (#114)
* feat: introduce nextra-powered docs * chore: separate example pages * docs: astro-with-tailwind * chore: add stackblitz component * chore: fix stackblitz import * chore: try star import * docs: add react-with-css-modules example * chore: add stackblitz import * chore: remove react swc * docs: add react with tailwind example * chore: follow tailwindcss branding * docs: add svelte example * docs: use tabs for intellisense * chore: use latest version * chore: run build before each ci step * docs: add vue example * chore: wrap up docs
1 parent 58b50a6 commit 3471757

File tree

115 files changed

+6316
-1337
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+6316
-1337
lines changed
 

‎.config/.syncpackrc

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
{
22
"workspace": false,
3-
"peer": false
3+
"peer": false,
4+
"versionGroups": [
5+
{
6+
"dependencies": [
7+
"class-variance-authority"
8+
],
9+
"packages": [
10+
"example-*"
11+
]
12+
}
13+
]
414
}

‎.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
script: [build, lint, tsc, test]
15+
script: [format, lint, tsc, test]
1616
steps:
1717
- uses: actions/checkout@v3
1818
with:
@@ -25,5 +25,6 @@ jobs:
2525
cache: "pnpm"
2626
node-version-file: ".nvmrc"
2727
- run: pnpm i
28+
- run: pnpm build
2829
- name: ${{ matrix.script }}
2930
run: pnpm ${{ matrix.script }}

0 commit comments

Comments
 (0)
Please sign in to comment.