readline-pager 0.8.0 → 0.8.2

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 CHANGED
@@ -508,3 +508,5 @@ function createPager(filepath, options = {}) {
508
508
  //#endregion
509
509
  exports.createNativePager = require_native.createNativePager;
510
510
  exports.createPager = createPager;
511
+
512
+ //# sourceMappingURL=main.cjs.map
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
@@ -506,3 +506,5 @@ function createPager(filepath, options = {}) {
506
506
  }
507
507
  //#endregion
508
508
  export { createNativePager, createPager };
509
+
510
+ //# sourceMappingURL=main.mjs.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.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
@@ -97,3 +97,5 @@ function createNativePager(filepath, options = {}) {
97
97
  }
98
98
  //#endregion
99
99
  exports.createNativePager = createNativePager;
100
+
101
+ //# sourceMappingURL=native.cjs.map
package/dist/native.mjs CHANGED
@@ -96,3 +96,5 @@ function createNativePager(filepath, options = {}) {
96
96
  }
97
97
  //#endregion
98
98
  export { createNativePager };
99
+
100
+ //# sourceMappingURL=native.mjs.map
package/package.json CHANGED
@@ -1,32 +1,32 @@
1
1
  {
2
2
  "name": "readline-pager",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
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.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.8.4",
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.0",
27
- "@devmor-j/readline-pager-linux-musl-arm64": "0.8.0",
28
- "@devmor-j/readline-pager-linux-musl-x64": "0.8.0",
29
- "@devmor-j/readline-pager-linux-x64": "0.8.0"
26
+ "@devmor-j/readline-pager-linux-arm64": "0.8.2",
27
+ "@devmor-j/readline-pager-linux-musl-arm64": "0.8.2",
28
+ "@devmor-j/readline-pager-linux-musl-x64": "0.8.2",
29
+ "@devmor-j/readline-pager-linux-x64": "0.8.2"
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",