update, text, response

This commit is contained in:
2025-11-02 11:09:14 +01:00
parent 14776c86b0
commit eed8a4ddcf
2794 changed files with 156786 additions and 129204 deletions

11
node_modules/escalade/index.d.mts generated vendored Normal file
View File

@@ -0,0 +1,11 @@
type Promisable<T> = T | Promise<T>;
export type Callback = (
directory: string,
files: string[],
) => Promisable<string | false | void>;
export default function (
directory: string,
callback: Callback,
): Promise<string | void>;

16
node_modules/escalade/index.d.ts generated vendored
View File

@@ -1,3 +1,15 @@
type Promisable<T> = T | Promise<T>;
export type Callback = (directory: string, files: string[]) => Promisable<string | false | void>;
export default function (directory: string, callback: Callback): Promise<string | void>;
declare namespace escalade {
export type Callback = (
directory: string,
files: string[],
) => Promisable<string | false | void>;
}
declare function escalade(
directory: string,
callback: escalade.Callback,
): Promise<string | void>;
export = escalade;

103
node_modules/escalade/package.json generated vendored
View File

@@ -1,68 +1,63 @@
{
"_from": "escalade@^3.1.1",
"_id": "escalade@3.1.1",
"_inBundle": false,
"_integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
"_location": "/escalade",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "escalade@^3.1.1",
"name": "escalade",
"escapedName": "escalade",
"rawSpec": "^3.1.1",
"saveSpec": null,
"fetchSpec": "^3.1.1"
},
"_requiredBy": [
"/browserslist"
],
"_resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
"_shasum": "d8cfdc7000965c5a0174b4a82eaa5c0552742e40",
"_spec": "escalade@^3.1.1",
"_where": "/var/www/html/jason/WeihnachtenMelly/node_modules/browserslist",
"name": "escalade",
"version": "3.2.0",
"repository": "lukeed/escalade",
"description": "A tiny (183B to 210B) and fast utility to ascend parent directories",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "index.d.ts",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "https://lukeed.com"
},
"bugs": {
"url": "https://github.com/lukeed/escalade/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "A tiny (183B to 210B) and fast utility to ascend parent directories",
"devDependencies": {
"bundt": "1.1.1",
"esm": "3.2.25",
"uvu": "0.3.3"
},
"engines": {
"node": ">=6"
},
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"import": {
"types": "./index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./index.d.ts",
"default": "./dist/index.js"
}
},
"./dist/index.js"
],
"./sync": [
{
"import": "./sync/index.mjs",
"require": "./sync/index.js"
"import": {
"types": "./sync/index.d.mts",
"default": "./sync/index.mjs"
},
"require": {
"types": "./sync/index.d.ts",
"default": "./sync/index.js"
}
},
"./sync/index.js"
]
},
"files": [
"*.d.mts",
"*.d.ts",
"dist",
"sync"
],
"homepage": "https://github.com/lukeed/escalade#readme",
"modes": {
"sync": "src/sync.js",
"default": "src/async.js"
},
"engines": {
"node": ">=6"
},
"scripts": {
"build": "bundt",
"pretest": "npm run build",
"test": "uvu -r esm test -i fixtures"
},
"keywords": [
"find",
"parent",
@@ -71,23 +66,9 @@
"search",
"walk"
],
"license": "MIT",
"main": "dist/index.js",
"modes": {
"sync": "src/sync.js",
"default": "src/async.js"
},
"module": "dist/index.mjs",
"name": "escalade",
"repository": {
"type": "git",
"url": "git+https://github.com/lukeed/escalade.git"
},
"scripts": {
"build": "bundt",
"pretest": "npm run build",
"test": "uvu -r esm test -i fixtures"
},
"types": "index.d.ts",
"version": "3.1.1"
"devDependencies": {
"bundt": "1.1.1",
"esm": "3.2.25",
"uvu": "0.3.3"
}
}

2
node_modules/escalade/readme.md generated vendored
View File

@@ -1,4 +1,4 @@
# escalade [![CI](https://github.com/lukeed/escalade/workflows/CI/badge.svg)](https://github.com/lukeed/escalade/actions) [![codecov](https://badgen.now.sh/codecov/c/github/lukeed/escalade)](https://codecov.io/gh/lukeed/escalade)
# escalade [![CI](https://github.com/lukeed/escalade/workflows/CI/badge.svg)](https://github.com/lukeed/escalade/actions) [![licenses](https://licenses.dev/b/npm/escalade)](https://licenses.dev/npm/escalade) [![codecov](https://badgen.now.sh/codecov/c/github/lukeed/escalade)](https://codecov.io/gh/lukeed/escalade)
> A tiny (183B to 210B) and [fast](#benchmarks) utility to ascend parent directories

9
node_modules/escalade/sync/index.d.mts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
export type Callback = (
directory: string,
files: string[],
) => string | false | void;
export default function (
directory: string,
callback: Callback,
): string | void;

View File

@@ -1,2 +1,13 @@
export type Callback = (directory: string, files: string[]) => string | false | void;
export default function (directory: string, callback: Callback): string | void;
declare namespace escalade {
export type Callback = (
directory: string,
files: string[],
) => string | false | void;
}
declare function escalade(
directory: string,
callback: escalade.Callback,
): string | void;
export = escalade;