Update to use pnpm instead of npm

This commit is contained in:
chrisdill 2024-09-01 14:01:24 +01:00
parent d471e99f76
commit d24f16b6e9
5 changed files with 1314 additions and 2134 deletions

View File

@ -1,5 +1,6 @@
name: Build name: Build
on: on:
workflow_dispatch:
push: push:
branches: branches:
- master - master
@ -7,24 +8,29 @@ on:
branches: branches:
- master - master
runs-on: ubuntu-latest
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - name: Checkout project
- name: 🔧 Setup node uses: actions/checkout@v2
uses: https://github.com/actions/setup-node@v4
- name: 🔧 Install pnpm
uses: https://github.com/actions/pnpm-action-setup@v4
with: with:
node-version: '18.0.x' version: 9
- name: 🧱 Install node packages run_install: false
run: npm ci
- name: ✅ svelte-check - name: 🧱 Install packages
run: npm run check run: pnpm install
- name: ✅ Check project
run: pnpm run check
- name: 🔨 Build project - name: 🔨 Build project
run: npm run build run: pnpm run build
- name: upload artifact
- name: Upload artifact
run: | run: |
tar -czf build.tar.gz build tar -czf build.tar.gz build
curl --user minijack:${{ secrets.PACKAGE_TOKEN }} \ curl --user minijack:${{ secrets.PACKAGE_TOKEN }} \

View File

@ -5,13 +5,13 @@ This website is a work in progress and subject to change.
## Building ## Building
1. `npm install` 1. `pnpm install`
2. `npm run build` 2. `pnpm run build`
## Serving ## Serving
1. `npm run dev` 1. `pnpm run dev`
## License ## License

2109
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -9,14 +9,15 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
}, },
"devDependencies": { "devDependencies": {
"@sveltejs/adapter-static": "^3.0.1", "@sveltejs/adapter-static": "^3.0.4",
"@sveltejs/kit": "^2.5.10", "@sveltejs/kit": "^2.5.25",
"svelte": "^4.2.17", "@sveltejs/vite-plugin-svelte": "^3.1.2",
"svelte-check": "^3.8.0", "svelte": "^4.2.19",
"svelte-preprocess": "^5.1.4", "svelte-check": "^3.8.6",
"tslib": "^2.6.2", "svelte-preprocess": "^6.0.2",
"typescript": "^5.4.5", "tslib": "^2.7.0",
"vite": "^5.2.12" "typescript": "^5.5.4",
"vite": "^5.4.2"
}, },
"type": "module" "type": "module"
} }

1282
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff