Skip to content

Commit 99cd6fc

Browse files
committed
Fixed: Build issue.
1 parent dbca539 commit 99cd6fc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nosferatu500/textract-lite",
3-
"version": "7.0.7",
3+
"version": "7.0.8",
44
"type": "module",
55
"homepage": "https://github.com/nosferatu500/textract-lite",
66
"description": "Extracting text from files of various type including txt, doc, docx.",

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import fs from "fs";
22
import mime from "mime";
3-
import { extract } from "./extract";
3+
import { extract } from "./extract.js";
44

55
export async function fromFileWithMimeAndPath(type: string, filePath: string, options: any): Promise<string | Error> {
66
if (fs.existsSync(filePath)) {

0 commit comments

Comments
 (0)