mirror of
https://github.com/unraid/api.git
synced 2025-12-30 13:09:52 -06:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added new utility functions to improve file writing reliability by ensuring parent directories exist before writing. * Introduced a new watch command for easier development workflow in the shared package. * **Bug Fixes** * Improved startup behavior by logging warnings for missing configuration keys instead of crashing, allowing initialization to proceed. * **Chores** * Updated configuration version number and reformatted plugin list for clarity. * Relocated certain GraphQL schema type and enum declarations without changing their content. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --- - To see the specific tasks where the Asana app for GitHub is being used, see below: - https://app.asana.com/0/0/1210788779106748
10 lines
229 B
Makefile
10 lines
229 B
Makefile
# Justfile for unraid-shared
|
|
|
|
# Default recipe to run when just is called without arguments
|
|
default:
|
|
@just --list
|
|
|
|
# Watch for changes in src files and run clean + build
|
|
watch:
|
|
watchexec -r -e ts,tsx -w src -- pnpm build
|