From 0ad67f10c67f558b82409bf9c092b2b79e1f2496 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Sat, 21 Jun 2025 16:44:47 +0300 Subject: [PATCH] Use prefix for npm tasks instead of dir --- mise.toml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/mise.toml b/mise.toml index d154c03b..c0cb173f 100644 --- a/mise.toml +++ b/mise.toml @@ -17,19 +17,16 @@ gh = 'latest' # NPM DEPS [tasks.npm-install] -run = 'npm install' +run = 'npm install --prefix assets' hide = true -dir = 'assets' [tasks.npm-update] -run = 'npm update' +run = 'npm update --prefix assets' hide = true -dir = 'assets' [tasks.npm-outdated] -run = 'npm outdated' +run = 'npm outdated --prefix assets' hide = true -dir = 'assets' # TAILWIND DEP