readline-pager 0.8.0 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.cjs +2 -0
- package/dist/main.d.cts +2 -1
- package/dist/main.d.mts +2 -1
- package/dist/main.mjs +2 -0
- package/dist/native-BJ3yhPgn.d.cts +2 -1
- package/dist/native-BJ3yhPgn.d.mts +2 -1
- package/dist/native.cjs +2 -0
- package/dist/native.mjs +2 -0
- package/package.json +12 -11
package/dist/main.cjs
CHANGED
package/dist/main.d.cts
CHANGED
|
@@ -6,4 +6,5 @@ declare function createPager<T extends Output>(filepath: string, options: PagerO
|
|
|
6
6
|
}): Pager<T>;
|
|
7
7
|
declare function createPager(filepath: string, options?: PagerOptions): Pager<"string">;
|
|
8
8
|
//#endregion
|
|
9
|
-
export { type Pager, type PagerOptions, createNativePager, createPager };
|
|
9
|
+
export { type Pager, type PagerOptions, createNativePager, createPager };
|
|
10
|
+
//# sourceMappingURL=main.d.cts.map
|
package/dist/main.d.mts
CHANGED
|
@@ -6,4 +6,5 @@ declare function createPager<T extends Output>(filepath: string, options: PagerO
|
|
|
6
6
|
}): Pager<T>;
|
|
7
7
|
declare function createPager(filepath: string, options?: PagerOptions): Pager<"string">;
|
|
8
8
|
//#endregion
|
|
9
|
-
export { type Pager, type PagerOptions, createNativePager, createPager };
|
|
9
|
+
export { type Pager, type PagerOptions, createNativePager, createPager };
|
|
10
|
+
//# sourceMappingURL=main.d.mts.map
|
package/dist/main.mjs
CHANGED
|
@@ -33,4 +33,5 @@ declare function createNativePager<T extends Output>(filepath: string, options:
|
|
|
33
33
|
}): Pager<T>;
|
|
34
34
|
declare function createNativePager(filepath: string, options?: Partial<NativeReaderOptions>): Pager<"string">;
|
|
35
35
|
//#endregion
|
|
36
|
-
export { PagerOptions as i, Output as n, Pager as r, createNativePager as t };
|
|
36
|
+
export { PagerOptions as i, Output as n, Pager as r, createNativePager as t };
|
|
37
|
+
//# sourceMappingURL=native-BJ3yhPgn.d.cts.map
|
|
@@ -33,4 +33,5 @@ declare function createNativePager<T extends Output>(filepath: string, options:
|
|
|
33
33
|
}): Pager<T>;
|
|
34
34
|
declare function createNativePager(filepath: string, options?: Partial<NativeReaderOptions>): Pager<"string">;
|
|
35
35
|
//#endregion
|
|
36
|
-
export { PagerOptions as i, Output as n, Pager as r, createNativePager as t };
|
|
36
|
+
export { PagerOptions as i, Output as n, Pager as r, createNativePager as t };
|
|
37
|
+
//# sourceMappingURL=native-BJ3yhPgn.d.mts.map
|
package/dist/native.cjs
CHANGED
package/dist/native.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "readline-pager",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build:js": "tsdown",
|
|
6
|
-
"build:native": "node-gyp rebuild",
|
|
6
|
+
"build:native": "node-gyp rebuild && node ./scripts/gen-compile-flags.ts",
|
|
7
7
|
"build": "npm run build:native && npm run build:js",
|
|
8
8
|
"test": "./scripts/test.sh",
|
|
9
|
-
"test:coverage": "npx lcov-badge2 coverage/lcov.info -o coverage.svg",
|
|
10
|
-
"prepublishOnly": "npm run test",
|
|
9
|
+
"test:coverage": "npx --yes lcov-badge2 coverage/lcov.info -o coverage.svg",
|
|
11
10
|
"benchmark": "./scripts/benchmark.sh",
|
|
12
11
|
"prettier": "npx prettier -wu './(src|test)/**/*.{js,cjs,mjs,ts,cts,mts,json,yml,md}'"
|
|
13
12
|
},
|
|
14
13
|
"devDependencies": {
|
|
15
14
|
"@types/bun": "~1.3.14",
|
|
16
15
|
"@types/deno": "~2.7.0",
|
|
17
|
-
"@types/node": "~26.0.
|
|
16
|
+
"@types/node": "~26.0.1",
|
|
17
|
+
"c8": "~11.0.0",
|
|
18
18
|
"lcov-badge2": "~1.1.4",
|
|
19
19
|
"node-gyp": "~13.0.0",
|
|
20
|
-
"prettier": "~3.
|
|
20
|
+
"prettier": "~3.9.4",
|
|
21
21
|
"prettier-plugin-organize-imports": "~4.3.0",
|
|
22
22
|
"tsdown": "~0.22.3",
|
|
23
23
|
"typescript": "~6.0.3"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@devmor-j/readline-pager-linux-arm64": "0.8.
|
|
27
|
-
"@devmor-j/readline-pager-linux-musl-arm64": "0.8.
|
|
28
|
-
"@devmor-j/readline-pager-linux-musl-x64": "0.8.
|
|
29
|
-
"@devmor-j/readline-pager-linux-x64": "0.8.
|
|
26
|
+
"@devmor-j/readline-pager-linux-arm64": "0.8.3",
|
|
27
|
+
"@devmor-j/readline-pager-linux-musl-arm64": "0.8.3",
|
|
28
|
+
"@devmor-j/readline-pager-linux-musl-x64": "0.8.3",
|
|
29
|
+
"@devmor-j/readline-pager-linux-x64": "0.8.3"
|
|
30
30
|
},
|
|
31
31
|
"gypfile": false,
|
|
32
32
|
"type": "module",
|
|
@@ -41,7 +41,8 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"files": [
|
|
44
|
-
"dist"
|
|
44
|
+
"dist",
|
|
45
|
+
"!dist/**/*.map"
|
|
45
46
|
],
|
|
46
47
|
"keywords": [
|
|
47
48
|
"nodejs",
|