Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
henryruhs committed Oct 11, 2023
1 parent 635f887 commit 6cd471a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14, 15, 16, 17, 18, 19 ]
node-version: [ 14, 15, 16, 17, 18, 19, 20 ]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "handpick",
"description": "Handpick conditional dependencies like a boss",
"version": "7.0.1",
"version": "7.1.0",
"license": "MIT",
"type": "module",
"keywords":
Expand Down Expand Up @@ -30,26 +30,26 @@
},
"dependencies":
{
"commander": "10.0.1",
"semver": "7.5.0"
"commander": "11.0.0",
"semver": "7.5.4"
},

This comment has been minimized.

Copy link
@glensc

glensc Oct 11, 2023

perhaps setup a renovate bot (or dependabot) to do this automatically?

it's as simple as following the documentation:

I've done it for one of my projects just today:

"devDependencies":
{
"@isnotdefined/eslint-config": "9.5.0",
"@types/chai": "4.3.5",
"@types/mocha": "10.0.1",
"@types/node": "18.16.3",
"@types/semver": "7.3.13",
"chai": "4.3.7",
"eslint": "8.39.0",
"@isnotdefined/eslint-config": "9.7.1",
"@types/chai": "4.3.7",
"@types/mocha": "10.0.2",
"@types/node": "20.8.4",
"@types/semver": "7.5.3",
"chai": "4.3.10",
"eslint": "8.51.0",
"mocha": "10.2.0",
"rollup": "3.21.1",
"rollup": "4.0.2",
"rollup-plugin-add-shebang": "0.3.1",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-ts": "3.2.0",
"rollup-plugin-ts": "3.4.5",
"ts-node": "10.9.1",
"typescript": "4.9.5"
"typescript": "5.2.2"
},
"scripts":
{
Expand Down
2 changes: 1 addition & 1 deletion src/spinner.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Cursor, Symbol } from './spinner.enum.js';
export class Spinner
{
protected stream : NodeJS.WriteStream = process.stdout;
protected interval : NodeJS.Timer;
protected interval : NodeJS.Timeout;
protected message : string;
protected spinnerTime : number = this.option.get('spinnerTime') as number;
protected spinnerArray : string[] = this.option.get('spinnerArray') as string[];
Expand Down

0 comments on commit 6cd471a

Please sign in to comment.