From 10aeaaa7261d8dfd502359682636b63d27db624d Mon Sep 17 00:00:00 2001 From: mpaulson Date: Sat, 13 Aug 2022 21:07:50 -0600 Subject: [PATCH] feat: important commit --- .jest.config.json | 2 +- ligma.config.js | 1 + package.json | 4 ++-- tsconfig.json | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.jest.config.json b/.jest.config.json index e6cbbbe..bc89bfe 100644 --- a/.jest.config.json +++ b/.jest.config.json @@ -2,7 +2,7 @@ "clearMocks": true, "moduleNameMapper": { "@code/(.*)": [ - "/src/day1/$1" + "/src/day2/$1" ] }, "preset": "ts-jest" diff --git a/ligma.config.js b/ligma.config.js index 006bbea..23661ba 100644 --- a/ligma.config.js +++ b/ligma.config.js @@ -1,5 +1,6 @@ module.exports = { dsa: [ + "DFSOnBST", "LRU", "LinearSearchList", "BinarySearchList", diff --git a/package.json b/package.json index 664ea25..1a8cb22 100644 --- a/package.json +++ b/package.json @@ -14,10 +14,10 @@ "typescript": "^4.7.4" }, "scripts": { - "test": "jest LRU LinearSearchList BinarySearchList TwoCrystalBalls BubbleSort DoublyLinkedList Queue Stack ArrayList MazeSolver QuickSort BTPreOrder BTInOrder BTPostOrder BTBFS CompareBinaryTrees DFSOnBST DFSGraphList Trie BFSGraphMatrix Map MinHeap", + "test": "jest DFSOnBST LRU LinearSearchList BinarySearchList TwoCrystalBalls BubbleSort DoublyLinkedList Queue Stack ArrayList MazeSolver QuickSort BTPreOrder BTInOrder BTPostOrder BTBFS CompareBinaryTrees DFSOnBST DFSGraphList Trie BFSGraphMatrix Map MinHeap", "clear": "./scripts/clear", "prettier": "prettier --write ./src", "generate": "./scripts/generate", - "day": "echo /home/mpaulson/personal/kata-machine/src/day1" + "day": "echo /home/mpaulson/personal/kata-machine/src/day2" } } \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 0079bd7..6030f91 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,7 @@ "baseUrl": "src", "paths": { "@code/*": [ - "day1/*" + "day2/*" ] } },