From 5237444e72f377d6d097a64dfdf8e9e9d9b95639 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Sun, 5 Oct 2025 21:45:18 +0300 Subject: [PATCH] Change npm install to npm ci in mise.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit So that we don’t accidentally update dependencies. --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 276b0310..8316fcd3 100644 --- a/mise.toml +++ b/mise.toml @@ -16,7 +16,7 @@ gh = 'latest' # NPM DEPS [tasks.npm-install] -run = 'npm install --prefix assets' +run = 'npm ci --prefix assets' hide = true [tasks.npm-update]