Skip to content

Commit 066decb

Browse files
committed
v1.0.3: deps update
1 parent 4973831 commit 066decb

File tree

4 files changed

+531
-318
lines changed

4 files changed

+531
-318
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: node-${{ matrix.node-version }}
1111
strategy:
1212
matrix:
13-
node-version: [18, 20, 22]
13+
node-version: [18, 20, 22, 24]
1414
steps:
1515
- uses: actions/checkout@v4
1616
- uses: actions/setup-node@v4

Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.PHONY: default fmt test
2+
3+
default:
4+
yarn format && yarn ci
5+
6+
fmt:
7+
yarn format
8+
9+
test:
10+
yarn test

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
{
22
"type": "module",
33
"name": "array-utils-ts",
4-
"version": "1.0.2",
4+
"version": "1.0.3",
55
"license": "MIT",
66
"scripts": {
77
"build": "rm -rf dist && pkgroll --minify && ls -lah dist",
88
"test": "uvu -r tsm src '\\.test\\.ts$'",
99
"test-cov": "c8 --include=src yarn test",
1010
"test-watch": "watchexec -e ts 'clear && yarn test'",
11-
"format": "prettier --write .",
11+
"format": "prettier --write --log-level warn .",
1212
"lint": "tsc --noEmit && prettier --check .",
1313
"ci": "yarn lint && yarn test-cov && yarn build"
1414
},
1515
"dependencies": {},
1616
"devDependencies": {
17-
"c8": "10.1.2",
18-
"pkgroll": "2.5.0",
19-
"prettier": "3.3.3",
20-
"prettier-plugin-organize-imports": "4.1.0",
17+
"c8": "10.1.3",
18+
"pkgroll": "2.15.3",
19+
"prettier": "3.6.2",
20+
"prettier-plugin-organize-imports": "4.2.0",
2121
"tsm": "2.3.0",
22-
"typescript": "5.6.3",
22+
"typescript": "5.9.2",
2323
"uvu": "0.5.6"
2424
},
2525
"author": "Vlad Pronsky <[email protected]>",

0 commit comments

Comments
 (0)