From 08770a67362ba27d0e3a9f785a441bb796a3dea3 Mon Sep 17 00:00:00 2001 From: Lennox Charles Date: Thu, 5 Dec 2024 20:07:52 +0100 Subject: [PATCH] chore: update watch command on all templates --- templates/mellow-react/package.json | 2 +- templates/mellow-svelte/package.json | 2 +- templates/mellow-vue/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/mellow-react/package.json b/templates/mellow-react/package.json index 888cf35..939ab1f 100644 --- a/templates/mellow-react/package.json +++ b/templates/mellow-react/package.json @@ -34,7 +34,7 @@ "tailwindcss": "^3.4.12" }, "scripts": { - "dev": "node --watch app.js", + "dev": "node --watch --ignore node_modules --ignore assets app.js", "start": "NODE_ENV=production node app.js", "lint": "prettier --check .", "lint:fix": "prettier --write .", diff --git a/templates/mellow-svelte/package.json b/templates/mellow-svelte/package.json index d591888..4d4bd25 100644 --- a/templates/mellow-svelte/package.json +++ b/templates/mellow-svelte/package.json @@ -36,7 +36,7 @@ "tailwindcss": "^3.4.12" }, "scripts": { - "dev": "node --watch app.js", + "dev": "node --watch --ignore node_modules --ignore assets app.js", "start": "NODE_ENV=production node app.js", "lint": "prettier --check .", "lint:fix": "prettier --write .", diff --git a/templates/mellow-vue/package.json b/templates/mellow-vue/package.json index 8073dce..9ae6e7f 100644 --- a/templates/mellow-vue/package.json +++ b/templates/mellow-vue/package.json @@ -35,7 +35,7 @@ "tailwindcss": "^3.4.12" }, "scripts": { - "dev": "node --watch app.js", + "dev": "node --watch --ignore node_modules --ignore assets app.js", "start": "NODE_ENV=production node app.js", "lint": "prettier --check .", "lint:fix": "prettier --write .",