3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 12:25:02 +00:00

Switch from ts-node to tsc-watch for faster watch restarts; move format npm script to project root

This commit is contained in:
Dragory 2019-11-30 17:04:59 +02:00
parent fd8a4598aa
commit 2a646f5a6e
6 changed files with 161 additions and 77 deletions

View file

@ -16,13 +16,8 @@ try {
const moment = require('moment-timezone');
moment.tz.setDefault('UTC');
const entities = process.env.NODE_ENV === 'production'
? path.relative(process.cwd(), path.resolve(__dirname, 'dist/backend/src/data/entities/*.js'))
: path.relative(process.cwd(), path.resolve(__dirname, 'src/data/entities/*.ts'));
const migrations = process.env.NODE_ENV === 'production'
? path.relative(process.cwd(), path.resolve(__dirname, 'dist/backend/src/migrations/*.js'))
: path.relative(process.cwd(), path.resolve(__dirname, 'src/migrations/*.ts'));
const entities = path.relative(process.cwd(), path.resolve(__dirname, 'dist/backend/src/data/entities/*.js'));
const migrations = path.relative(process.cwd(), path.resolve(__dirname, 'dist/backend/src/migrations/*.js'));
module.exports = {
type: "mysql",