lerna no-bail

This commit is contained in:
Hongbo Wu
2022-04-05 23:51:18 +08:00
parent a269ba2707
commit e9aa60d40a
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
],
"license": "UNLICENSED",
"scripts": {
"test": "lerna run test --ignore @omnivore/web",
"test": "lerna run --no-bail test --ignore @omnivore/web",
"lint": "lerna run lint --ignore @omnivore/web",
"build": "lerna run build --ignore @omnivore/web",
"bootstrap": "lerna bootstrap",

View File

@ -52,7 +52,7 @@ const createEntityConnection = async (): Promise<void> => {
username: process.env.PG_USER,
password: process.env.PG_PASSWORD,
database: process.env.PG_DB,
logging: ['error'],
logging: ['query', 'info'],
entities: [__dirname + '/../src/entity/**/*{.js,.ts}'],
subscribers: [__dirname + '/../src/events/**/*{.js,.ts}'],
namingStrategy: new SnakeNamingStrategy(),