Skip to content

Commit

Permalink
chore: format codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
wd-David committed Jun 18, 2022
1 parent 8fc00d5 commit 6072c98
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
.nyc_output
node_modules
dist
build
coverage
dist
2 changes: 1 addition & 1 deletion test/buildScripts/buildJS.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ build({
platform: 'node',
format: 'cjs',
plugins: [esbuildPluginPino({ transports: ['pino-pretty'] })]
}).catch(() => process.exit(1))
}).catch(() => process.exit(1))
2 changes: 1 addition & 1 deletion test/buildScripts/buildTS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ build({
platform: 'node',
format: 'cjs',
plugins: [esbuildPluginPino({ transports: ['pino-loki', 'pino-pretty'] })]
}).catch(() => process.exit(1))
}).catch(() => process.exit(1))
4 changes: 2 additions & 2 deletions test/fixtures/first.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const pino = require('pino');
const pino = require('pino')

const logger = pino()

logger.info('This is first!')
logger.info('This is first!')
2 changes: 1 addition & 1 deletion test/fixtures/second.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const pino = require('pino');
const pino = require('pino')

const logger = pino(
pino.transport({
Expand Down

0 comments on commit 6072c98

Please sign in to comment.