diff --git a/solutions/typescript/2018/15/src/coord.class.ts b/solutions/typescript/2018/15/src/coord.class.ts deleted file mode 100644 index b5e2d8ae2..000000000 --- a/solutions/typescript/2018/15/src/coord.class.ts +++ /dev/null @@ -1,16 +0,0 @@ -export class Coord { - constructor( - public x: number, - public y: number, - ) {} - - add(coord: Coord): this { - this.x += coord.x; - this.y += coord.y; - return this; - } - - toString(): string { - return `${this.x},${this.y}`; - } -} diff --git a/solutions/typescript/libs/intcode/package.json b/solutions/typescript/libs/intcode/package.json index 8d793b00e..f25a628f0 100644 --- a/solutions/typescript/libs/intcode/package.json +++ b/solutions/typescript/libs/intcode/package.json @@ -1,7 +1,7 @@ { "name": "@alexaegis/advent-of-code-intcode", "description": "Advent of Code Intcode Computer", - "version": "1.0.0", + "version": "1.0.1", "private": false, "archetype": { "platform": "node", @@ -55,7 +55,7 @@ } }, "dependencies": { - "@alexaegis/advent-of-code-lib": "workspace:^" + "@alexaegis/advent-of-code-lib": "^1.0.1" }, "devDependencies": { "@alexaegis/eslint-config-vitest": "^0.9.2", diff --git a/solutions/typescript/libs/lib/package.json b/solutions/typescript/libs/lib/package.json index a58a01d5e..c2494e848 100644 --- a/solutions/typescript/libs/lib/package.json +++ b/solutions/typescript/libs/lib/package.json @@ -1,7 +1,7 @@ { "name": "@alexaegis/advent-of-code-lib", "description": "Advent of Code Library", - "version": "1.0.0", + "version": "1.0.1", "private": false, "archetype": { "platform": "node",