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
35 changes: 34 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,41 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: weekly
interval: "weekly"
groups:
github-actions:
patterns:
- "*"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
cooldown:
semver-patch-days: 1
semver-minor-days: 3
semver-major-days: 14
versioning-strategy: "increase-if-necessary"
groups:
npm-production:
dependency-type: "production"
patterns:
- "*"
npm-development:
dependency-type: "development"
patterns:
- "*"

- package-ecosystem: "cargo"
directory: "/standalone/src-tauri"
schedule:
interval: "weekly"
cooldown:
semver-patch-days: 1
semver-minor-days: 3
semver-major-days: 14
versioning-strategy: "increase-if-necessary"
groups:
cargo:
patterns:
- "*"
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4
with:
version: 10
version: 11.0.6

- name: Install dependencies
run: pnpm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4
with:
version: 10
version: 11.0.6

- name: Install dependencies
run: pnpm install
Expand All @@ -44,7 +44,7 @@ jobs:

- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4
with:
version: 10
version: 11.0.6

- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4
with:
version: 10
version: 11.0.6

- name: Install workspace dependencies
run: pnpm install --frozen-lockfile
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:

- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4
with:
version: 10
version: 11.0.6

- name: Install workspace dependencies
run: pnpm install --frozen-lockfile
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:

- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4
with:
version: 10
version: 11.0.6

- name: Install workspace dependencies
run: pnpm install --frozen-lockfile
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Dependencies
node_modules/
.pnpm-store/

# Build output
dist/
Expand Down
4 changes: 2 additions & 2 deletions docs/specs/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ strategy:
```

Each matrix leg:
1. Checkout, setup Node 22, pnpm 10, Rust stable
1. Checkout, setup Node 22, pnpm 11.0.6, Rust stable
2. Install workspace dependencies once from the repo root with `pnpm install --frozen-lockfile`
3. Install system deps (Linux: libgtk, libwebkit, etc.)
4. Generate an ephemeral, per-job Tauri updater key with `pnpm --dir standalone exec tauri signer generate --ci --write-keys "$RUNNER_TEMP/tauri-ci-updater.key" --force`
Expand All @@ -111,7 +111,7 @@ The CI updater key exists only so Tauri emits updater-shaped artifacts during un
### Job: `build-vscode`

Runs on `ubuntu-latest`:
1. Checkout, setup Node 22, pnpm 10
1. Checkout, setup Node 22, pnpm 11.0.6
2. `pnpm install --frozen-lockfile` at the repo root
3. `pnpm --filter dormouse-lib test`
4. `pnpm --filter dormouse build:frontend && pnpm --filter dormouse build`
Expand Down
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"storybook": "^10.4.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^7.3.1",
"vite": "^7.3.3",
"vitest": "^4.1.6"
}
}
8 changes: 1 addition & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "dormouse-root",
"private": true,
"license": "FSL-1.1-MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm run build:vscode && pnpm --filter dormouse-website build",
"test": "pnpm -r run test",
Expand All @@ -15,12 +16,5 @@
"dogfood:standalone": "bash standalone/scripts/dogfood.sh",
"storybook": "pnpm --filter dormouse-lib storybook",
"bundle-themes": "node lib/scripts/bundle-themes.mjs"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"node-pty"
]
}
}
Loading