tweak: decompose into two different packages, part 1/n

This commit is contained in:
NunoSempere 2022-06-15 23:00:07 -04:00
parent 66c5f25a45
commit 193b86a212
42 changed files with 10 additions and 7 deletions

14
.gitignore vendored
View File

@ -7,14 +7,14 @@ Notes.md
.swp
# hacky upload script
lib/pushToMongoManually.js
packages/webpage/lib/pushToMongoManually.js
# convenience old folder
pages/.old/*
pages/.old
packages/webpage/pages/.old/*
packages/webpage/pages/.old
# dependencies
/node_modules
**/node_modules
/.pnp
.pnp.js
@ -22,11 +22,11 @@ pages/.old
/coverage
# next.js
/.next/
/out/
**/.next/
**/out/
# production
/build
**/build
# misc
.DS_Store

View File

Before

Width:  |  Height:  |  Size: 289 KiB

After

Width:  |  Height:  |  Size: 289 KiB

View File

Before

Width:  |  Height:  |  Size: 294 KiB

After

Width:  |  Height:  |  Size: 294 KiB

View File

Before

Width:  |  Height:  |  Size: 336 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View File

Before

Width:  |  Height:  |  Size: 282 KiB

After

Width:  |  Height:  |  Size: 282 KiB

View File

Before

Width:  |  Height:  |  Size: 266 KiB

After

Width:  |  Height:  |  Size: 266 KiB

View File

Before

Width:  |  Height:  |  Size: 294 KiB

After

Width:  |  Height:  |  Size: 294 KiB

View File

@ -253,6 +253,9 @@ export default function ComparisonView({ listOfElementsForView }) {
}
function mergeSort({ array, comparisons }) {
console.log("mergesort");
console.log({ array, comparisons });
console.log("/console");
if (array == "No comparison found; unable to proceed") {
return "No comparison found; unable to proceed";
}

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB