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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ updates:
interval: daily

- package-ecosystem: npm
directory: "/"
directory: "/docs"
schedule:
interval: daily

Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,31 @@ jobs:

strategy:
matrix:
node-version: [20.x]
node-version: [24.x]

steps:
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8.x.x
version: 10.x.x

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
cache-dependency-path: docs/pnpm-lock.yaml

- name: Install and Build 🔧
run: |
cd docs
pnpm install
pnpm docs:build
pnpm build

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs/.vuepress/dist
folder: docs/dist
10 changes: 6 additions & 4 deletions .github/workflows/test-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,25 @@ jobs:

strategy:
matrix:
node-version: [20.x]
node-version: [24.x]

steps:
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8.x.x
version: 10.x.x

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
cache-dependency-path: docs/pnpm-lock.yaml

- name: Install and Build 🔧
run: |
cd docs
pnpm install
pnpm docs:build
pnpm build
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/node_modules
/docs/.astro
/docs/node_modules
/public/hot
/public/storage
/storage/*.key
Expand All @@ -22,7 +23,4 @@ yarn-error.log
.vapor/
/.idea
composer.lock
/docs/.vuepress/dist
/docs/.vuepress/.cache
/docs/.vuepress/.temp
/docs/.build
/docs/dist
54 changes: 0 additions & 54 deletions dist/builder-sidebar.js

This file was deleted.

12 changes: 0 additions & 12 deletions dist/components/CustomSurvey.js

This file was deleted.

44 changes: 0 additions & 44 deletions dist/custom-templates.js

This file was deleted.

Loading
Loading