Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [ 16.x, 18.x, 20.x ]
node-version: [ 20.x, 22.x, 24.x ]
os: [ windows-latest, ubuntu-latest, macOS-latest ]

# Go
Expand Down
33 changes: 14 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@architect/logs",
"version": "5.0.5",
"version": "5.0.6-RC.0",
"description": "Manage logging from Architect-provisioned cloud functions",
"main": "src/index.js",
"bin": {
Expand All @@ -9,13 +9,13 @@
"scripts": {
"test": "npm run lint && npm run coverage",
"test:nolint": "npm run coverage",
"test:unit": "cross-env tape 'test/**/*-tests.js' | tap-arc",
"test:unit": "cross-env tape 'test/**/*-tests.js'",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"lint": "eslint . --fix",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=16"
"node": ">=20"
},
"repository": {
"type": "git",
Expand All @@ -34,26 +34,21 @@
"src/*"
],
"dependencies": {
"@architect/inventory": "~4.0.5",
"@architect/utils": "~4.0.6",
"@aws-lite/client": "^0.21.1",
"@aws-lite/cloudformation": "^0.0.5",
"@aws-lite/cloudwatch-logs": "^0.0.4",
"chalk": "4.1.2",
"minimist": "~1.2.8",
"run-parallel": "~1.2.0",
"run-waterfall": "~1.1.7",
"strftime": "~0.10.2"
"@architect/inventory": "~4.0.10-RC.0",
"@architect/utils": "~5.0.0",
"@aws-lite/client": "~0.23.2",
"@aws-lite/cloudformation": "~0.1.3",
"@aws-lite/cloudwatch-logs": "~0.1.0",
"strftime": "0.10.3"
},
"devDependencies": {
"@architect/eslint-config": "~3.0.0",
"cross-env": "~7.0.3",
"eslint": "~9.1.1",
"cross-env": "~10.0.0",
"eslint": "~9.36.0",
"mock-require": "~3.0.3",
"mock-tmp": "~0.0.4",
"nyc": "^15.1.0",
"sinon": "~17.0.1",
"tap-arc": "~1.2.2",
"tape": "~5.7.5"
"nyc": "~17.1.0",
"sinon": "~21.0.0",
"tape": "~5.9.0"
}
}
3 changes: 1 addition & 2 deletions src/cli.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env node
let minimist = require('minimist')
let { banner } = require('@architect/utils')
let { banner, minimist } = require('@architect/utils')
let _inventory = require('@architect/inventory')
let { version } = require('../package.json')
let logs = require('.')
Expand Down
2 changes: 1 addition & 1 deletion src/pretty-print.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let chalk = require('chalk')
let chalk = require('@architect/utils/chalk')
let strftime = require('strftime')

module.exports = {
Expand Down
4 changes: 2 additions & 2 deletions src/read-logs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let parallel = require('run-parallel')
let waterfall = require('run-waterfall')
let { parallel, waterfall } = require('@architect/utils')

let getPhysicalID = require('./get-physical-id')
let pretty = require('./pretty-print')
let getLogicalID = require('./get-logical-id')
Expand Down
Loading