mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
lerna no-bail
This commit is contained in:
parent
a269ba2707
commit
e9aa60d40a
2 changed files with 2 additions and 2 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue