Skip to content

Commit f156571

Browse files
author
Benjamin E. Coe
authored
fix(deps)!: drop Node 10 to release CVE-2021-3807 patch (#122)
1 parent 13a2a9d commit f156571

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node: [10, 12, 14]
13+
node: [12, 16, 18]
1414
steps:
1515
- uses: actions/checkout@v1
1616
- uses: actions/setup-node@v1

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
release-please:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: bcoe/release-please-action@v2.6.0
10+
- uses: bcoe/release-please-action@v3
1111
id: release
1212
with:
1313
token: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
"author": "Ben Coe <ben@npmjs.com>",
5050
"license": "ISC",
5151
"dependencies": {
52+
"rollup-plugin-ts": "^3.0.2",
5253
"string-width": "^4.2.0",
5354
"strip-ansi": "^6.0.1",
5455
"wrap-ansi": "^7.0.0"
@@ -57,7 +58,6 @@
5758
"@types/node": "^14.0.27",
5859
"@typescript-eslint/eslint-plugin": "^4.0.0",
5960
"@typescript-eslint/parser": "^4.0.0",
60-
"@wessberg/rollup-plugin-ts": "^1.3.2",
6161
"c8": "^7.3.0",
6262
"chai": "^4.2.0",
6363
"chalk": "^4.1.0",
@@ -77,7 +77,7 @@
7777
"index.mjs",
7878
"!*.d.ts"
7979
],
80-
"engine": {
81-
"node": ">=10"
80+
"engines": {
81+
"node": ">=12"
8282
}
8383
}

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import ts from '@wessberg/rollup-plugin-ts'
1+
import ts from 'rollup-plugin-ts'
22

33
const output = {
44
format: 'cjs',

0 commit comments

Comments
 (0)