Skip to content

Commit

Permalink
Bump jsbt
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Jan 25, 2025
1 parent e27d52b commit 22a35b8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"readdirp": "^4.1.0"
},
"devDependencies": {
"@paulmillr/jsbt": "0.2.1",
"@paulmillr/jsbt": "0.3.1",
"@types/node": "20.14.8",
"@types/sinon": "^17.0.3",
"micro-should": "0.5.0",
Expand Down
18 changes: 9 additions & 9 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
/*! chokidar - MIT License (c) 2012 Paul Miller (paulmillr.com) */
import { stat as statcb, Stats } from 'node:fs';
import { stat, readdir } from 'node:fs/promises';
import { EventEmitter } from 'node:events';
import { stat as statcb, Stats } from 'node:fs';
import { readdir, stat } from 'node:fs/promises';
import * as sysPath from 'node:path';
import { readdirp, ReaddirpStream, ReaddirpOptions, EntryInfo } from 'readdirp';
import { type EntryInfo, readdirp, type ReaddirpOptions, ReaddirpStream } from 'readdirp';
import {
NodeFsHandler,
EventName,
Path,
EMPTY_FN,
EVENTS as EV,
isWindows,
type EventName,
isIBMi,
EMPTY_FN,
isWindows,
NodeFsHandler,
type Path,
STR_CLOSE,
STR_END,
WatchHandlers,
type WatchHandlers,
} from './handler.js';

export type AWF = {
Expand Down

0 comments on commit 22a35b8

Please sign in to comment.