Skip to content

Commit

Permalink
Update generate and clear scripts in package.json
Browse files Browse the repository at this point in the history
- Included `node` before the file path to be able to run them
  • Loading branch information
ruthvik committed Sep 17, 2022
1 parent c04ba25 commit 4475438
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
},
"scripts": {
"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",
"clear": "node ./scripts/clear",
"prettier": "prettier --write ./src",
"generate": "./scripts/generate",
"day": "echo /home/mpaulson/personal/kata-machine/src/day2"
"generate": "node ./scripts/generate",
"day": "echo C:\\Users\\bruce\\learning\\kata-machine\\src\\day1"
}
}

0 comments on commit 4475438

Please sign in to comment.