diff options
| author | 2026-01-19 14:33:07 +0800 | |
|---|---|---|
| committer | 2026-01-19 14:33:07 +0800 | |
| commit | 49545e67ce1ab4ec86248ac6edb07ec89c282eec (patch) | |
| tree | 50f5fc3ae156cc853660a1aa1556c0bced9054b4 /.pre-commit-config.yaml | |
| parent | 887e415314014c3da7db3048fa0e724f3078c5cb (diff) | |
| parent | 91d4590dff7ed3dbce5929926c718ac93aad056a (diff) | |
| download | DropOut-49545e67ce1ab4ec86248ac6edb07ec89c282eec.tar.gz DropOut-49545e67ce1ab4ec86248ac6edb07ec89c282eec.zip | |
chore(ui): refactor workspace to monorepo (#70)
## Summary by Sourcery
Refactor the UI project structure into a pnpm monorepo packages layout
and align tooling and automation with the new paths.
Enhancements:
- Reorganize the UI app from the root ui directory into packages/ui
within a pnpm workspace.
- Update pnpm workspace configuration to include all packages under
packages/*.
- Adjust paths in changeset configuration so the @dropout/ui package
resolves from packages/ui.
Build:
- Update pre-commit configuration paths and arguments to reflect the new
UI location and normalize hook argument formatting.
- Update Dependabot configuration so npm updates target /packages/ui
instead of /ui.
CI:
- Update GitHub Actions workflows to watch packages/** instead of ui/**
and to run frontend tasks from packages/ui.
- Update pnpm cache dependency paths in workflows to use the root
pnpm-lock.yaml.
- Simplify frontend install steps in test workflows to run from the
repository root.
Chores:
- Add a new index.html under packages/ui and remove the old
ui/index.html to match the new project layout.
Diffstat (limited to '.pre-commit-config.yaml')
| -rw-r--r-- | .pre-commit-config.yaml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7fd9d5e..1713952 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,14 +1,14 @@ ci: autofix_prs: true autofix_commit_msg: "[pre-commit.ci] auto fixes from pre-commit hooks [skip ci]" - skip: [fmt,cargo-check,clippy] + skip: [fmt, cargo-check, clippy] repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v6.0.0 hooks: - id: check-json - exclude: ^ui/tsconfig.*\.json$ + exclude: ^packages/ui/tsconfig.*\.json$ - id: check-toml - id: check-yaml - id: check-case-conflict @@ -22,19 +22,19 @@ repos: rev: v0.14.13 hooks: - id: ruff - args: [ --fix ] + args: [--fix] - id: ruff-format - repo: https://github.com/FeryET/pre-commit-rust rev: v1.2.1 hooks: - id: fmt - args: [ --manifest-path, src-tauri/Cargo.toml, -- ] + args: [--manifest-path, src-tauri/Cargo.toml, --] files: ^src-tauri/.*\.rs$ pass_filenames: false - id: cargo-check - args: [ --manifest-path, src-tauri/Cargo.toml ] + args: [--manifest-path, src-tauri/Cargo.toml] files: ^src-tauri/.*\.rs$ - id: clippy - args: [ --manifest-path, src-tauri/Cargo.toml ] + args: [--manifest-path, src-tauri/Cargo.toml] files: ^src-tauri/.*\.rs$ |