Skip to content

Commit a6bcd78

Browse files
authored
Update package dependencies and refactor glob import (#109)
* Upgrade 'glob' dependency from version 8.0.3 to 13.0.0 in package.json. * Change import statement for 'glob' in index.js to use named import.
1 parent 7becadc commit a6bcd78

3 files changed

Lines changed: 166 additions & 78 deletions

File tree

js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import querystring from 'node:querystring';
77
import {EventEmitter} from 'node:events';
88
import {exec} from 'node:child_process';
99
import {createHash} from 'node:crypto';
10-
import glob from 'glob';
10+
import {glob} from 'glob';
1111

1212
const cliPath = pathUtil
1313
.resolve(pathUtil

0 commit comments

Comments
 (0)