@athenna/core
Advanced tools
Comparing version 4.11.0 to 4.12.0
{ | ||
"name": "@athenna/core", | ||
"version": "4.11.0", | ||
"version": "4.12.0", | ||
"description": "The plug and play Node.js framework.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -35,7 +35,25 @@ /** | ||
nodemon({ | ||
script: entrypoint.replace('.ts', '.js') | ||
script: entrypoint.replace('.ts', '.js'), | ||
ignore: [ | ||
'.git', | ||
'.github', | ||
'.idea', | ||
'.vscode', | ||
'.fleet', | ||
'node_modules/**/node_modules' | ||
], | ||
watch: [ | ||
'./', | ||
'package.json', | ||
'.athennarc.json', | ||
'tsconfig.json', | ||
'.env', | ||
'.env.dev', | ||
'.env.test', | ||
'.env.testing', | ||
'.env.example' | ||
], | ||
ext: '*.*', | ||
...Config.get('rc.commands.serve.nodemon', {}) | ||
}); | ||
if (Config.is('rc.bootLogs', false)) { | ||
return; | ||
} | ||
let isFirstRestart = true; | ||
@@ -42,0 +60,0 @@ nodemon |
112509
3030