Skip to content

Commit 4081b02

Browse files
committedJun 6, 2022
Require Node.js 14
1 parent c65a1bb commit 4081b02

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed
 

‎.github/funding.yml

-3
This file was deleted.

‎.github/workflows/main.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
node-version:
13+
- 18
14+
- 16
1315
- 14
14-
- 12
1516
steps:
16-
- uses: actions/checkout@v2
17-
- uses: actions/setup-node@v2
17+
- uses: actions/checkout@v3
18+
- uses: actions/setup-node@v3
1819
with:
1920
node-version: ${{ matrix.node-version }}
2021
- run: npm install

‎package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
},
1313
"type": "module",
1414
"exports": "./index.js",
15+
"types": "./index.d.ts",
1516
"engines": {
16-
"node": ">=12"
17+
"node": ">=14.16"
1718
},
1819
"scripts": {
1920
"test": "xo && ava && tsd"
@@ -44,8 +45,8 @@
4445
"parse-ms": "^3.0.0"
4546
},
4647
"devDependencies": {
47-
"ava": "^3.15.0",
48-
"tsd": "^0.19.0",
49-
"xo": "^0.47.0"
48+
"ava": "^4.3.0",
49+
"tsd": "^0.20.0",
50+
"xo": "^0.49.0"
5051
}
5152
}

‎readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
55
## Install
66

7-
```
8-
$ npm install pretty-ms
7+
```sh
8+
npm install pretty-ms
99
```
1010

1111
## Usage

0 commit comments

Comments
 (0)
Please sign in to comment.