read-excel-file 5.8.0 → 5.8.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/index.d.ts CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  ParseWithoutSchemaOptions,
5
5
  ParsedObjectsResult,
6
6
  Row
7
- } from './types.d';
7
+ } from './types.d.js';
8
8
 
9
9
  export {
10
10
  Schema,
@@ -13,7 +13,7 @@ export {
13
13
  Integer,
14
14
  Email,
15
15
  URL
16
- } from './types.d';
16
+ } from './types.d.js';
17
17
 
18
18
  export function parseExcelDate(excelSerialDate: number) : typeof Date;
19
19
 
package/node/index.d.ts CHANGED
@@ -10,7 +10,7 @@ import {
10
10
  ParseWithoutSchemaOptions,
11
11
  ParsedObjectsResult,
12
12
  Row
13
- } from '../types.d';
13
+ } from '../types.d.js';
14
14
 
15
15
  export {
16
16
  ParsedObjectsResult,
@@ -18,7 +18,7 @@ export {
18
18
  Integer,
19
19
  Email,
20
20
  URL
21
- } from '../types.d';
21
+ } from '../types.d.js';
22
22
 
23
23
  export function parseExcelDate(excelSerialDate: number) : typeof Date;
24
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "read-excel-file",
3
- "version": "5.8.0",
3
+ "version": "5.8.1",
4
4
  "description": "Read small to medium `*.xlsx` files in a browser or Node.js. Parse to JSON with a strict schema.",
5
5
  "module": "index.js",
6
6
  "main": "index.cjs",
@@ -4,7 +4,7 @@ import {
4
4
  ParseWithoutSchemaOptions,
5
5
  ParsedObjectsResult,
6
6
  Row
7
- } from '../types.d';
7
+ } from '../types.d.js';
8
8
 
9
9
  export {
10
10
  ParsedObjectsResult,
@@ -12,7 +12,7 @@ export {
12
12
  Integer,
13
13
  Email,
14
14
  URL
15
- } from '../types.d';
15
+ } from '../types.d.js';
16
16
 
17
17
  export function parseExcelDate(excelSerialDate: number) : typeof Date;
18
18