fix: flatten log-tail/ files into monorepo (no sub-repo)

This commit is contained in:
2026-02-08 02:15:25 -05:00
parent e2bf6c57d1
commit 80d742d2e9
8183 changed files with 1550894 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
The ISC License
Copyright (c) Isaac Z. Schlueter
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+46
View File
@@ -0,0 +1,46 @@
# walk-up-path
Given a path string, return a generator that walks up the path, emitting
each dirname.
So, to get a platform-portable walk up, instead of doing something like
this:
```js
for (let p = dirname(path); p;) {
// ... do stuff ...
const pp = dirname(p)
if (p === pp)
p = null
else
p = pp
}
```
Or this:
```js
for (let p = dirname(path); !isRoot(p); p = dirname(p)) {
// ... do stuff ...
}
```
You can do this:
```js
const walkUpPath = require('walk-up-path')
for (const p of walkUpPath(path)) {
// ... do stuff ..
}
```
## API
```js
const walkUpPath = require('walk-up-path')
```
Give the fn a string, it'll yield all the directories walking up to the
root.
+2
View File
@@ -0,0 +1,2 @@
export declare const walkUp: (path: string) => Generator<string, void, unknown>;
//# sourceMappingURL=index.d.ts.map
+1
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
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
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
View File
@@ -0,0 +1,3 @@
{
"type": "commonjs"
}
+2
View File
@@ -0,0 +1,2 @@
export declare const walkUp: (path: string) => Generator<string, void, unknown>;
//# sourceMappingURL=index.d.ts.map
+1
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
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
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
View File
@@ -0,0 +1,3 @@
{
"type": "module"
}
+72
View File
@@ -0,0 +1,72 @@
{
"name": "walk-up-path",
"version": "3.0.1",
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.js",
"types": "./dist/mjs/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
}
}
},
"description": "Given a path string, return a generator that walks up the path, emitting each dirname.",
"repository": {
"type": "git",
"url": "git+https://github.com/isaacs/walk-up-path"
},
"author": "Isaac Z. Schlueter <[email protected]> (https://izs.me)",
"license": "ISC",
"scripts": {
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags",
"prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json && bash ./scripts/fixup.sh",
"pretest": "npm run prepare",
"presnap": "npm run prepare",
"test": "c8 tap",
"snap": "c8 tap",
"format": "prettier --write . --loglevel warn",
"typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts"
},
"prettier": {
"semi": false,
"printWidth": 75,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"tap": {
"coverage": false,
"node-arg": [
"--no-warnings",
"--loader",
"ts-node/esm"
],
"ts": false
},
"devDependencies": {
"@types/node": "^18.15.5",
"@types/tap": "^15.0.8",
"c8": "^7.13.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.6",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"typedoc": "^0.23.28",
"typescript": "^5.0.2"
}
}