fix: exports
This commit is contained in:
parent
8066d3a3d6
commit
b94c66a78a
|
@ -6,7 +6,7 @@
|
||||||
"start": "node --max-old-space-size=8192 src/index.js"
|
"start": "node --max-old-space-size=8192 src/index.js"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "src/index.js",
|
"main": "src/process-inputs.js",
|
||||||
"author": "Nuño Sempere",
|
"author": "Nuño Sempere",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -2,6 +2,5 @@ import { mergeSort } from "./mergeSort.js";
|
||||||
import { findDistancesFromAllElementsToAllReferencePoints } from "./findPaths.js";
|
import { findDistancesFromAllElementsToAllReferencePoints } from "./findPaths.js";
|
||||||
import { aggregatePaths } from "./aggregatePaths.js";
|
import { aggregatePaths } from "./aggregatePaths.js";
|
||||||
|
|
||||||
export const mergeSort = mergeSort;
|
|
||||||
export const findPaths = findDistancesFromAllElementsToAllReferencePoints;
|
export const findPaths = findDistancesFromAllElementsToAllReferencePoints;
|
||||||
export const aggregatePaths = aggregatePaths;
|
export { mergeSort, aggregatePaths };
|
||||||
|
|
Loading…
Reference in New Issue
Block a user