Skip to content

Commit

Permalink
disable source maps
Browse files Browse the repository at this point in the history
  • Loading branch information
lunedis committed May 25, 2021
1 parent b9ae09e commit 28293c0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion pipeline/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "dist/index.js",
"scripts": {
"start": "npm run transpile && npm run start:transpiled",
"start:transpiled": "node --enable-source-maps dist/index.js",
"start:transpiled": "node dist/index.js",
"transpile": "tsc",
"lint": "eslint src --fix",
"lint-ci": "eslint src --max-warnings=0",
Expand Down
2 changes: 0 additions & 2 deletions pipeline/src/env.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { readEnvOrDie } from '@jvalue/node-dry-basics'

console.log(process.env)

export const CONNECTION_RETRIES = +readEnvOrDie('CONNECTION_RETRIES')
export const CONNECTION_BACKOFF = +readEnvOrDie('CONNECTION_BACKOFF_IN_MS')
export const POSTGRES_HOST = readEnvOrDie('POSTGRES_HOST')
Expand Down

0 comments on commit 28293c0

Please sign in to comment.