Last commit july 5th

This commit is contained in:
2024-07-05 13:46:23 +02:00
parent dad0d86e8c
commit b0e4dfbb76
24982 changed files with 2621219 additions and 413 deletions

2
spa/node_modules/walk-up-path/dist/cjs/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export declare const walkUp: (path: string) => Generator<string, void, unknown>;
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,MAAM,SAAoB,MAAM,qCAU5C,CAAA"}

18
spa/node_modules/walk-up-path/dist/cjs/index.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.walkUp = void 0;
const path_1 = require("path");
const walkUp = function* (path) {
for (path = (0, path_1.resolve)(path); path;) {
yield path;
const pp = (0, path_1.dirname)(path);
if (pp === path) {
break;
}
else {
path = pp;
}
}
};
exports.walkUp = walkUp;
//# sourceMappingURL=index.js.map

1
spa/node_modules/walk-up-path/dist/cjs/index.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAAA,+BAAuC;AAChC,MAAM,MAAM,GAAG,QAAQ,CAAC,EAAE,IAAY;IAC3C,KAAK,IAAI,GAAG,IAAA,cAAO,EAAC,IAAI,CAAC,EAAE,IAAI,GAAG;QAChC,MAAM,IAAI,CAAA;QACV,MAAM,EAAE,GAAG,IAAA,cAAO,EAAC,IAAI,CAAC,CAAA;QACxB,IAAI,EAAE,KAAK,IAAI,EAAE;YACf,MAAK;SACN;aAAM;YACL,IAAI,GAAG,EAAE,CAAA;SACV;KACF;AACH,CAAC,CAAA;AAVY,QAAA,MAAM,UAUlB","sourcesContent":["import { dirname, resolve } from 'path'\nexport const walkUp = function* (path: string) {\n for (path = resolve(path); path;) {\n yield path\n const pp = dirname(path)\n if (pp === path) {\n break\n } else {\n path = pp\n }\n }\n}\n"]}

3
spa/node_modules/walk-up-path/dist/cjs/package.json generated vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"type": "commonjs"
}

2
spa/node_modules/walk-up-path/dist/mjs/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export declare const walkUp: (path: string) => Generator<string, void, unknown>;
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,MAAM,SAAoB,MAAM,qCAU5C,CAAA"}

14
spa/node_modules/walk-up-path/dist/mjs/index.js generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import { dirname, resolve } from 'path';
export const walkUp = function* (path) {
for (path = resolve(path); path;) {
yield path;
const pp = dirname(path);
if (pp === path) {
break;
}
else {
path = pp;
}
}
};
//# sourceMappingURL=index.js.map

1
spa/node_modules/walk-up-path/dist/mjs/index.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;AACvC,MAAM,CAAC,MAAM,MAAM,GAAG,QAAQ,CAAC,EAAE,IAAY;IAC3C,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EAAE,IAAI,GAAG;QAChC,MAAM,IAAI,CAAA;QACV,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;QACxB,IAAI,EAAE,KAAK,IAAI,EAAE;YACf,MAAK;SACN;aAAM;YACL,IAAI,GAAG,EAAE,CAAA;SACV;KACF;AACH,CAAC,CAAA","sourcesContent":["import { dirname, resolve } from 'path'\nexport const walkUp = function* (path: string) {\n for (path = resolve(path); path;) {\n yield path\n const pp = dirname(path)\n if (pp === path) {\n break\n } else {\n path = pp\n }\n }\n}\n"]}

3
spa/node_modules/walk-up-path/dist/mjs/package.json generated vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"type": "module"
}