-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Pull projects out into shared code * Require node >= 18.20 for cross package linking * Remove libram from projects * Share projects with web version * Missing full stop * Do not prettify build output for web * Split up long function for monster parts project * Formatting * Fix bug in monster parts
- Loading branch information
Showing
32 changed files
with
933 additions
and
815 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { AUTUMNATON } from "./projects/autumnaton"; | ||
import { BIRD_A_DAY } from "./projects/birdADay"; | ||
import { COAT_OF_PAINT } from "./projects/coatOfPaint"; | ||
import { DROP_CON_SNOWGLOBE } from "./projects/dropConSnowglobe"; | ||
import { DROP_MIXED_EVERYTHING } from "./projects/dropMixedEverything"; | ||
import { DROP_MR_CHEENGS } from "./projects/dropMrCheengs"; | ||
import { DROP_MR_SCREEGES } from "./projects/dropMrScreeges"; | ||
import { GENIE } from "./projects/genie"; | ||
import { HOOKAH } from "./projects/hookah"; | ||
import { JUICE_BAR } from "./projects/juiceBar"; | ||
import { MONSTER_PARTS } from "./projects/monsterParts"; | ||
import { MUMMING_TRUNK } from "./projects/mummingTrunk"; | ||
import { OUT_OF_ORDER } from "./projects/outOfOrder"; | ||
import type { ExcavatorProject } from "./type"; | ||
|
||
export { ExcavatorProject }; | ||
|
||
export const projects: ExcavatorProject[] = [ | ||
AUTUMNATON, | ||
BIRD_A_DAY, | ||
COAT_OF_PAINT, | ||
GENIE, | ||
HOOKAH, | ||
JUICE_BAR, | ||
DROP_CON_SNOWGLOBE, | ||
DROP_MIXED_EVERYTHING, | ||
DROP_MR_CHEENGS, | ||
DROP_MR_SCREEGES, | ||
MONSTER_PARTS, | ||
MUMMING_TRUNK, | ||
OUT_OF_ORDER, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "excavator-projects", | ||
"version": "0.0.0", | ||
"main": "index.js", | ||
"license": "ISC", | ||
"author": "Sam Gaus <sam@gaus.co.uk>", | ||
"scripts": { | ||
"format": "prettier --write .", | ||
"lint": "prettier --check ." | ||
}, | ||
"devDependencies": { | ||
"excavator-prettier-config": "^0.0.0", | ||
"prettier": "^3.1.1", | ||
"typescript": "^5.4.3" | ||
}, | ||
"prettier": "excavator-prettier-config", | ||
"dependencies": { | ||
"kolmafia": "^5.27896.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.