Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .eslintrc

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-version: [16, 18, 19]
node-version: [20, 22, 24]
steps:
- name: Check out repo
uses: actions/checkout@v3
Expand Down
1 change: 0 additions & 1 deletion .taprc.yml

This file was deleted.

4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env node
'use strict'

const path = require('path')
const fs = require('fs')
const path = require('node:path')
const fs = require('node:fs')
const realPath = fs.realpathSync(__dirname)
const script = path.join(realPath, 'psyslog.js')

Expand Down
7 changes: 7 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
'use strict'

const neostandard = require('neostandard')

module.exports = neostandard({
ignores: neostandard.resolveIgnoresFromGitignore(),
})
32 changes: 13 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "https://github.com/pinojs/pino-syslog",
"main": "lib/transport.js",
"scripts": {
"test": "npm run lint && tap --no-cov 'test/**/*.test.js'",
"test": "npm run lint && node --test test/*.test.js",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
Expand All @@ -28,26 +28,20 @@
"test"
],
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"pino": "^8.8.0",
"pino-socket": "^7.3.0",
"pre-commit": "^1.2.2",
"tap": "^16.3.2"
"eslint": "^9.39.1",
"neostandard": "^0.12.2",
"pino": "^10.1.0",
"pino-socket": "^7.4.0"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are blocked until I get the next pino-socket ready (currently fighting with tests).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Puppo if you'd like to help, I'm trying to figure out why I can't get the issue5 test to feed data to stdin https://github.com/pinojs/pino-socket/compare/new-major

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

},
"dependencies": {
"fast-json-parse": "^1.0.2",
"fast-safe-stringify": "^2.0.2",
"luxon": "^3.2.1",
"nopt": "^7.0.0",
"pino-abstract-transport": "^1.0.0",
"pump": "^3.0.0",
"sonic-boom": "^3.2.1",
"split2": "^4.1.0",
"fast-json-parse": "^1.0.3",
"fast-safe-stringify": "^2.1.1",
"luxon": "^3.7.2",
"nopt": "^9.0.0",
"pino-abstract-transport": "^3.0.0",
"pump": "^3.0.3",
"sonic-boom": "^4.2.0",
"split2": "^4.2.0",
"through2": "^4.0.2"
}
}
4 changes: 2 additions & 2 deletions psyslog.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
'use strict'

const nopt = require('nopt')
const path = require('path')
const path = require('node:path')
const pump = require('pump')
const split2 = require('split2')
const parseJson = require('fast-json-parse')
const { buildOptions } = require('./lib/utils')
const { buildOptions } = require('./lib/utils.js')

const longOpts = {
modern: Boolean,
Expand Down
Loading