Skip to content

Commit dfd600d

Browse files
committed
Add a module index
1 parent dd5e2ec commit dfd600d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export { lat_lon2n_E } from "./lat_lon2n_E.js";
2+
export { n_E2lat_lon } from "./n_E2lat_lon.js";

test/jest/lat_lon2n_E.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { it } from "@fast-check/jest";
2-
import { lat_lon2n_E } from "../../src/lat_lon2n_E.js";
2+
import { lat_lon2n_E } from "../../src/index.js";
33
import { arbitraryLatLon } from "../arbitrary.js";
44
import {
55
NvectorTestClient,

test/jest/n_E2lat_lon.spec.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { it } from "@fast-check/jest";
2-
import { lat_lon2n_E } from "../../src/lat_lon2n_E.js";
3-
import { n_E2lat_lon } from "../../src/n_E2lat_lon.js";
2+
import { lat_lon2n_E, n_E2lat_lon } from "../../src/index.js";
43
import { arbitraryLatLon } from "../arbitrary.js";
54
import {
65
NvectorTestClient,

0 commit comments

Comments
 (0)