Skip to content

Commit

Permalink
Update all out of date dependencies to latest.
Browse files Browse the repository at this point in the history
  • Loading branch information
treycucco committed Jan 23, 2024
1 parent 2296c54 commit 7b7795d
Show file tree
Hide file tree
Showing 7 changed files with 760 additions and 378 deletions.
1 change: 1 addition & 0 deletions lib/cjs/types/utils/fs.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// <reference types="node" />
import { type FileHandle } from 'fs/promises';
/**
* Asynchronously walks through a directory structure and yields filenames.
Expand Down
2 changes: 1 addition & 1 deletion lib/cjs/types/utils/fs.d.ts.map

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

5 changes: 3 additions & 2 deletions lib/cjs/utils/fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ var __asyncDelegator = (this && this.__asyncDelegator) || function (o) {
var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) {
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
var g = generator.apply(thisArg, _arguments || []), i, q = [];
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
return i = {}, verb("next"), verb("throw"), verb("return", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;
function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }
function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
function fulfill(value) { resume("next", value); }
Expand Down
1 change: 1 addition & 0 deletions lib/esm/types/utils/fs.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// <reference types="node" />
import { type FileHandle } from 'fs/promises';
/**
* Asynchronously walks through a directory structure and yields filenames.
Expand Down
2 changes: 1 addition & 1 deletion lib/esm/types/utils/fs.d.ts.map

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

Loading

0 comments on commit 7b7795d

Please sign in to comment.