feat: modular logging + setup wizard

This commit is contained in:
NGPixel
2017-12-24 00:34:47 -05:00
parent 18dee58a06
commit 2d5a3203db
43 changed files with 318 additions and 229 deletions

View File

@@ -171,16 +171,6 @@ Promise.mapSeries(tasksToRun, fn => fn()).then(() => {
fuse.run().then(() => {
console.info(colors.green.bold('\nAssets compilation + bundling completed.'))
if (opts.dev) {
nodemon({
exec: 'node server',
ignore: ['assets/', 'client/', 'data/', 'dev/', 'node_modules/', 'repo/', 'test/', 'test-results/'],
ext: 'js json graphql',
watch: ['server'],
env: { 'NODE_ENV': 'development' }
})
}
return true
}).catch(err => {
console.error(colors.red(' X Bundle compilation failed! ' + err.message))