From 2c58213d952f8c0c3e5064dc58c40049359acd6c Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 29 Jan 2025 12:17:30 -0500 Subject: [PATCH] updates Procfile.dev to use dev js and css build scripts after migration from yarn to npm --- Procfile.dev | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Procfile.dev b/Procfile.dev index 8a9077da3a..9164cb4634 100644 --- a/Procfile.dev +++ b/Procfile.dev @@ -1,3 +1,3 @@ web: bin/rails server -p 3000 -b 0.0.0.0 -js: npm run build --watch -css: npm run build:css --watch +js: npm run build:dev --watch +css: npm run build:css:dev --watch