Skip to content

Commit 8742246

Browse files
committed
Upgrade dev deps, jsbt, ci files. Upgrade readdirp to v5.
1 parent de5a34c commit 8742246

File tree

5 files changed

+39
-50
lines changed

5 files changed

+39
-50
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@ on:
44
types: [created]
55
jobs:
66
release-js:
7-
name: 'jsbt v0.3.1' # Should match commit below
8-
uses: paulmillr/jsbt/.github/workflows/release.yml@c45f03360e0171b138f04568d2fdd35d7bbc0d35
9-
secrets:
10-
NPM_PUBLISH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
7+
name: 'jsbt v0.4.5' # Should match commit below
8+
uses: paulmillr/jsbt/.github/workflows/release.yml@570adcfe0ed96b477bb9b35400fb43fd9406fb47
119
permissions:
12-
contents: write
10+
contents: read
1311
id-token: write

.github/workflows/test-js.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: Run JS tests
1+
name: Run TS tests
22
on:
33
- push
44
- pull_request
55
jobs:
6-
test-js:
7-
name: 'jsbt v0.4.1'
8-
uses: paulmillr/jsbt/.github/workflows/test-js-matrix.yml@90c5b7b7aaa71e6b810aae888150f9d661daffec
6+
test-ts:
7+
name: 'jsbt v0.4.5' # Should match commit below
8+
uses: paulmillr/jsbt/.github/workflows/test-js-matrix.yml@570adcfe0ed96b477bb9b35400fb43fd9406fb47

package-lock.json

Lines changed: 24 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "chokidar",
33
"description": "Minimal and efficient cross-platform file watching library",
4-
"version": "4.0.3",
4+
"version": "5.0.0",
55
"type": "module",
66
"homepage": "https://github.com/paulmillr/chokidar",
77
"author": "Paul Miller (https://paulmillr.com)",
@@ -24,20 +24,19 @@
2424
}
2525
},
2626
"dependencies": {
27-
"readdirp": "^4.1.0"
27+
"readdirp": "^5.0.0"
2828
},
2929
"devDependencies": {
30-
"@paulmillr/jsbt": "0.4.1",
31-
"@types/node": "22.10.10",
32-
"micro-should": "0.5.3",
30+
"@paulmillr/jsbt": "0.4.5",
31+
"@types/node": "24.10.1",
3332
"prettier": "3.5.2",
3433
"tinyspy": "3.0.2",
35-
"typescript": "5.8.2",
34+
"typescript": "5.9.2",
3635
"upath": "2.0.1"
3736
},
3837
"sideEffects": false,
3938
"engines": {
40-
"node": ">= 14.18.0"
39+
"node": ">= 20.19.0"
4140
},
4241
"repository": {
4342
"type": "git",
@@ -52,7 +51,7 @@
5251
"lint": "prettier --check src",
5352
"format": "prettier --write src",
5453
"test": "node index.test.js",
55-
"test:bun": "bun index.test.js"
54+
"test:bun1": "bun index.test.js"
5655
},
5756
"keywords": [
5857
"fs",

src/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { afterEach, beforeEach, describe, it } from 'micro-should';
1+
import { afterEach, beforeEach, describe, it } from '@paulmillr/jsbt/test.js';
22
import { deepEqual, equal, ok, throws } from 'node:assert/strict';
33
import { exec as cexec } from 'node:child_process';
44
import {

0 commit comments

Comments
 (0)