mirror of
https://github.com/immich-app/immich.git
synced 2026-02-21 16:20:34 +09:00
* chore: update task commands in mise.toml to use pnpm * Replaced direct commands with pnpm run equivalents for consistency. * Added new tasks for type checking and Svelte checks. * Removed deprecated svelte-kit-sync task and adjusted dependencies accordingly. * mroe * chore: update mise.toml to add demo server task * Removed the direct IMMICH_SERVER_URL setting from the environment section. * Added a new task for starting the demo server with the IMMICH_SERVER_URL environment variable. * Ensured consistency in task definitions.
50 lines
797 B
TOML
50 lines
797 B
TOML
experimental_monorepo_root = true
|
|
|
|
[monorepo]
|
|
config_roots = [
|
|
"plugins",
|
|
"server",
|
|
"cli",
|
|
"deployment",
|
|
"mobile",
|
|
"e2e",
|
|
"web",
|
|
"docs",
|
|
".github",
|
|
]
|
|
|
|
[tools]
|
|
node = "24.13.1"
|
|
flutter = "3.35.7"
|
|
pnpm = "10.29.3"
|
|
terragrunt = "0.98.0"
|
|
opentofu = "1.11.4"
|
|
java = "21.0.2"
|
|
|
|
[tools."github:CQLabs/homebrew-dcm"]
|
|
version = "1.35.1"
|
|
bin = "dcm"
|
|
postinstall = "chmod +x $MISE_TOOL_INSTALL_PATH/dcm"
|
|
|
|
[settings]
|
|
experimental = true
|
|
pin = true
|
|
|
|
# SDK tasks
|
|
[tasks."sdk:install"]
|
|
dir = "open-api/typescript-sdk"
|
|
run = "pnpm install --filter @immich/sdk --frozen-lockfile"
|
|
|
|
[tasks."sdk:build"]
|
|
dir = "open-api/typescript-sdk"
|
|
run = "pnpm run build"
|
|
|
|
# i18n tasks
|
|
[tasks."i18n:format"]
|
|
dir = "i18n"
|
|
run = "pnpm run format"
|
|
|
|
[tasks."i18n:format-fix"]
|
|
dir = "i18n"
|
|
run = "pnpm run format:fix"
|