Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion node_modules/glob/dist/commonjs/index.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node_modules/glob/dist/esm/index.min.js

Large diffs are not rendered by default.

23 changes: 10 additions & 13 deletions node_modules/glob/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Isaac Z. Schlueter <i@izs.me> (https://blog.izs.me/)",
"name": "glob",
"description": "the most correct and second fastest glob implementation in JavaScript",
"version": "13.0.5",
"version": "13.0.6",
"type": "module",
"tshy": {
"exports": {
Expand Down Expand Up @@ -73,29 +73,26 @@
"benchclean": "node benchclean.cjs"
},
"dependencies": {
"minimatch": "^10.2.1",
"minipass": "^7.1.2",
"path-scurry": "^2.0.0"
"minimatch": "^10.2.2",
"minipass": "^7.1.3",
"path-scurry": "^2.0.2"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@types/node": "^25.3.0",
"esbuild": "^0.27.3",
"memfs": "^4.50.0",
"mkdirp": "^3.0.1",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"tap": "^21.1.3",
"tshy": "^3.0.3",
"typedoc": "^0.28.14"
},
"tap": {
"before": "test/00-setup.ts"
"rimraf": "^6.1.3",
"tap": "^21.6.1",
"tshy": "^3.3.2",
"typedoc": "^0.28.17"
},
"license": "BlueOak-1.0.0",
"funding": {
"url": "https://github.com/sponsors/isaacs"
},
"engines": {
"node": "20 || >=22"
"node": "18 || 20 || >=22"
}
}
8 changes: 4 additions & 4 deletions node_modules/minimatch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
"name": "minimatch",
"description": "a glob matcher in javascript",
"version": "10.2.1",
"version": "10.2.2",
"repository": {
"type": "git",
"url": "git@github.com:isaacs/minimatch"
Expand Down Expand Up @@ -39,13 +39,13 @@
"typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts"
},
"engines": {
"node": "20 || >=22"
"node": "18 || 20 || >=22"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/node": "^25.3.0",
"mkdirp": "^3.0.1",
"prettier": "^3.6.2",
"tap": "^21.1.0",
"tap": "^21.6.1",
"tshy": "^3.0.2",
"typedoc": "^0.28.5"
},
Expand Down
15 changes: 0 additions & 15 deletions node_modules/minipass/LICENSE

This file was deleted.

55 changes: 55 additions & 0 deletions node_modules/minipass/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Blue Oak Model License

Version 1.0.0

## Purpose

This license gives everyone as much permission to work with
this software as possible, while protecting contributors
from liability.

## Acceptance

In order to receive this license, you must agree to its
rules. The rules of this license are both obligations
under that agreement and conditions to your license.
You must not do anything with this software that triggers
a rule that you cannot or will not follow.

## Copyright

Each contributor licenses you to do everything with this
software that would otherwise infringe that contributor's
copyright in it.

## Notices

You must ensure that everyone who gets a copy of
any part of this software from you, with or without
changes, also gets the text of this license or a link to
<https://blueoakcouncil.org/license/1.0.0>.

## Excuse

If anyone notifies you in writing that you have not
complied with [Notices](#notices), you can keep your
license by taking all practical steps to comply within 30
days after the notice. If you do not do so, your license
ends immediately.

## Patent

Each contributor licenses you to do everything with this
software that would otherwise infringe any patent claims
they can license or become able to license.

## Reliability

No contributor can revoke this license.

## No Liability

***As far as the law allows, this software comes as is,
without any warranty or condition, and no contributor
will be liable to anyone for any damages related to this
software or this license, under any kind of legal claim.***
16 changes: 13 additions & 3 deletions node_modules/minipass/dist/commonjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ const isStream = (s) => !!s &&
(s instanceof Minipass ||
s instanceof node_stream_1.default ||
(0, exports.isReadable)(s) ||
(0, exports.isWritable)(s));
(0, exports.isWritable)(s))
/**
* Return true if the argument is a valid {@link Minipass.Readable}
*/
;
exports.isStream = isStream;
/**
* Return true if the argument is a valid {@link Minipass.Readable}
Expand All @@ -32,7 +36,11 @@ const isReadable = (s) => !!s &&
s instanceof node_events_1.EventEmitter &&
typeof s.pipe === 'function' &&
// node core Writable streams have a pipe() method, but it throws
s.pipe !== node_stream_1.default.Writable.prototype.pipe;
s.pipe !== node_stream_1.default.Writable.prototype.pipe
/**
* Return true if the argument is a valid {@link Minipass.Writable}
*/
;
exports.isReadable = isReadable;
/**
* Return true if the argument is a valid {@link Minipass.Writable}
Expand Down Expand Up @@ -129,7 +137,7 @@ class PipeProxyErrors extends Pipe {
}
constructor(src, dest, opts) {
super(src, dest, opts);
this.proxyErrors = er => dest.emit('error', er);
this.proxyErrors = (er) => this.dest.emit('error', er);
src.on('error', this.proxyErrors);
}
}
Expand Down Expand Up @@ -939,6 +947,7 @@ class Minipass extends node_events_1.EventEmitter {
[Symbol.asyncIterator]() {
return this;
},
[Symbol.asyncDispose]: async () => { },
};
}
/**
Expand Down Expand Up @@ -976,6 +985,7 @@ class Minipass extends node_events_1.EventEmitter {
[Symbol.iterator]() {
return this;
},
[Symbol.dispose]: () => { },
};
}
/**
Expand Down
4 changes: 3 additions & 1 deletion node_modules/minipass/dist/esm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class PipeProxyErrors extends Pipe {
}
constructor(src, dest, opts) {
super(src, dest, opts);
this.proxyErrors = er => dest.emit('error', er);
this.proxyErrors = (er) => this.dest.emit('error', er);
src.on('error', this.proxyErrors);
}
}
Expand Down Expand Up @@ -930,6 +930,7 @@ export class Minipass extends EventEmitter {
[Symbol.asyncIterator]() {
return this;
},
[Symbol.asyncDispose]: async () => { },
};
}
/**
Expand Down Expand Up @@ -967,6 +968,7 @@ export class Minipass extends EventEmitter {
[Symbol.iterator]() {
return this;
},
[Symbol.dispose]: () => { },
};
}
/**
Expand Down
23 changes: 9 additions & 14 deletions node_modules/minipass/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "minipass",
"version": "7.1.2",
"version": "7.1.3",
"description": "minimal implementation of a PassThrough stream",
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js",
"type": "module",
"tshy": {
"selfLink": false,
"main": true,
"compiler": "tsgo",
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
Expand Down Expand Up @@ -54,29 +55,23 @@
},
"devDependencies": {
"@types/end-of-stream": "^1.4.2",
"@types/node": "^20.1.2",
"@types/node": "^25.2.3",
"end-of-stream": "^1.4.0",
"node-abort-controller": "^3.1.1",
"prettier": "^2.6.2",
"tap": "^19.0.0",
"prettier": "^3.8.1",
"tap": "^21.6.1",
"through2": "^2.0.3",
"tshy": "^1.14.0",
"typedoc": "^0.25.1"
"tshy": "^3.3.2",
"typedoc": "^0.28.17"
},
"repository": "https://github.com/isaacs/minipass",
"keywords": [
"passthrough",
"stream"
],
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC",
"license": "BlueOak-1.0.0",
"engines": {
"node": ">=16 || 14 >=14.17"
},
"tap": {
"typecheck": true,
"include": [
"test/*.ts"
]
}
}
32 changes: 8 additions & 24 deletions node_modules/path-scurry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "path-scurry",
"version": "2.0.1",
"version": "2.0.2",
"description": "walk paths fast and efficiently",
"author": "Isaac Z. Schlueter <i@izs.me> (https://blog.izs.me)",
"main": "./dist/commonjs/index.js",
Expand Down Expand Up @@ -35,35 +35,19 @@
"typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts",
"bench": "bash ./scripts/bench.sh"
},
"prettier": {
"experimentalTernaries": true,
"semi": false,
"printWidth": 75,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"devDependencies": {
"@nodelib/fs.walk": "^2.0.0",
"@types/node": "^20.14.10",
"@nodelib/fs.walk": "^3.0.1",
"@types/node": "^25.3.0",
"mkdirp": "^3.0.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.8",
"tap": "^20.0.3",
"rimraf": "^6.1.3",
"tap": "^21.6.1",
"ts-node": "^10.9.2",
"tshy": "^2.0.1",
"typedoc": "^0.26.3",
"typescript": "^5.5.3"
},
"tap": {
"typecheck": true
"tshy": "^3.3.2",
"typedoc": "^0.28.17"
},
"engines": {
"node": "20 || >=22"
"node": "18 || 20 || >=22"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
Expand Down
Loading
Loading