wp-epub-gen 0.1.4 → 0.2.1

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/README.md CHANGED
@@ -80,7 +80,7 @@ epubGen(option).then(
80
80
  - `appendChapterTitle`:
81
81
  optional, Automatically append the chapter title at the beginning of current chapter, this value will overwrite the global `appendChapterTitles`.
82
82
  - `verbose`:
83
- specify whether or not to console.log progress messages, default: false.
83
+ specify whether to console.log progress messages, default: false.
84
84
  - `timeoutSeconds`:
85
85
  specify timeout in seconds, `0` means no timeout, default: 0.
86
86
  - `tocAutoNumber`:
package/build/index.d.ts CHANGED
@@ -6,3 +6,4 @@
6
6
  import { IEpubGenOptions, IOut } from './types';
7
7
  export declare function epubGen(options: IEpubGenOptions, output?: string): Promise<IOut>;
8
8
  export declare const gen: typeof epubGen;
9
+ export { errors } from './errors';