Skip to content

Commit

Permalink
chore: release v0.5.0 (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Mok authored Jan 21, 2024
1 parent 0b8765f commit 02ff2c3
Show file tree
Hide file tree
Showing 10 changed files with 449 additions and 1,735 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,20 @@ updates:
- pmmmwh
labels:
- dependencies
groups:
typescript-eslint:
patterns:
- "@typescript-eslint/*"
versioning-strategy: widen
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
day: saturday
open-pull-requests-limit: 10
reviewers:
- pmmmwh
assignees:
- pmmmwh
labels:
- dependencies
8 changes: 5 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,16 @@ jobs:
strategy:
matrix:
node:
- 16
- 18
- 20
- 21
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js v${{ matrix.node }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: yarn
node-version: ${{ matrix.node }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Dependencies
node_modules
Expand Down
363 changes: 0 additions & 363 deletions .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

This file was deleted.

874 changes: 0 additions & 874 deletions .yarn/releases/yarn-3.6.1.cjs

This file was deleted.

10 changes: 3 additions & 7 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
lockfileFilename: yarn.lock
compressionLevel: mixed

nodeLinker: pnpm

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
enableGlobalCache: false

yarnPath: .yarn/releases/yarn-3.6.1.cjs
nodeLinker: pnpm
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Or simply using [npx](https://docs.npmjs.com/cli/v8/commands/npx), the package r
$ npx staledeps
```

_Note:_ `staledeps` requires Node.js >= 14.16.
_Note:_ `staledeps` requires Node.js >= 18.

## Usage

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "staledeps",
"version": "0.4.0",
"version": "0.5.0",
"type": "module",
"description": "Find stale dependencies in the package.json file(s)",
"author": "Michael Mok",
Expand All @@ -23,7 +23,7 @@
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"packageManager": "yarn@3.6.1",
"packageManager": "yarn@4.0.2",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
Expand All @@ -38,10 +38,10 @@
"chalk": "^5.3.0",
"cliui": "^8.0.1",
"ms": "^3.0.0-canary.1",
"ora": "^7.0.1",
"p-limit": "^4.0.0",
"ora": "^8.0.1",
"p-limit": "^5.0.0",
"tslib": "^2.6.2",
"undici": "^5.23.0",
"undici": "^6.4.0",
"yargs": "^17.7.2"
},
"devDependencies": {
Expand Down Expand Up @@ -69,6 +69,6 @@
"ms": "patch:ms@npm:3.0.0-canary.1#.yarn/patches/ms-npm-3.0.0-canary.1-a95efad0b2.patch"
},
"engines": {
"node": ">=16"
"node": ">=18"
}
}
8 changes: 4 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"declaration": true,
"importHelpers": true,
"incremental": true,
"lib": ["ES2020"],
"module": "node16",
"lib": ["ES2022"],
"module": "NodeNext",
"outDir": "dist",
"removeComments": true,
"skipLibCheck": true,
"target": "ES2020",
"target": "ES2022",

/* Strict checks */
"strict": true,
Expand All @@ -22,7 +22,7 @@

/* Module resolution */
"esModuleInterop": true,
"moduleResolution": "node16",
"moduleResolution": "NodeNext",
"resolveJsonModule": true,

/* Consistency checks */
Expand Down
Loading

0 comments on commit 02ff2c3

Please sign in to comment.