fix: exports

This commit is contained in:
NunoSempere 2022-06-17 14:34:54 -04:00
parent 8066d3a3d6
commit b94c66a78a
2 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,7 @@
"start": "node --max-old-space-size=8192 src/index.js"
},
"type": "module",
"main": "src/index.js",
"main": "src/process-inputs.js",
"author": "Nuño Sempere",
"license": "MIT",
"dependencies": {

View File

@ -2,6 +2,5 @@ import { mergeSort } from "./mergeSort.js";
import { findDistancesFromAllElementsToAllReferencePoints } from "./findPaths.js";
import { aggregatePaths } from "./aggregatePaths.js";
export const mergeSort = mergeSort;
export const findPaths = findDistancesFromAllElementsToAllReferencePoints;
export const aggregatePaths = aggregatePaths;
export { mergeSort, aggregatePaths };