0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-30 02:22:49 +00:00
[LOCAL] Add Themes directory to watch list
This commit is contained in:
Trevor Buckner
2023-01-20 17:21:15 -05:00
committed by GitHub
3 changed files with 6 additions and 1 deletions

View File

@@ -62,6 +62,10 @@ For a full record of development, visit our [Github Page](https://github.com/nat
##### Jeddai
* [x] Add unit tests with full coverage for the Homebrewery API
##### G-Ambatte
* [x] Add Themes directory to development server watchlist.
}}
### Friday 23/12/2022 - v3.5.0

View File

@@ -14,6 +14,7 @@
"quick": "node scripts/quick.js",
"build": "node scripts/buildHomebrew.js",
"buildall": "node scripts/buildHomebrew.js && node scripts/buildAdmin.js",
"builddev": "node scripts/buildHomebrew.js --dev",
"lint": "eslint --fix **/*.{js,jsx}",
"lint:dry": "eslint **/*.{js,jsx}",
"circleci": "npm test && eslint **/*.{js,jsx} --max-warnings=0",

View File

@@ -136,6 +136,6 @@ fs.emptyDirSync('./build');
if(isDev){
livereload('./build');
watchFile('./server.js', {
watch : ['./client', './server'] // Watch additional folders if you want
watch : ['./client', './server', './themes'] // Watch additional folders if you want
});
}