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
4 changes: 1 addition & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,8 @@ jobs:

- run: pnpm install --frozen-lockfile

- name: Build library
run: pnpm build

- name: Build demo
# Builds the library first via the demo's build:lib script
run: pnpm build:demo

- uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
Expand Down
7 changes: 4 additions & 3 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@
"./*": "./app/*"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"start": "vite",
"build": "pnpm run build:lib && vite build",
"build:lib": "pnpm --filter @eksml/xml build",
"dev": "pnpm run build:lib && vite",
"start": "pnpm run build:lib && vite",
"lint:eslint": "eslint . --cache",
"lint:eslint:fix": "eslint . --fix",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
Expand Down