Skip to content

Commit

Permalink
feat(commands): improved command handling, and unit testing setup
Browse files Browse the repository at this point in the history
  • Loading branch information
connerdouglass committed Jun 27, 2024
1 parent d61105b commit 5475560
Show file tree
Hide file tree
Showing 18 changed files with 7,074 additions and 1,569 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ docs
dist
examples
.eslintrc.js
jest.config.js
src/bukkit.ts
src/java.ts
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ docs
dist
examples
.eslintrc.js
jest.config.js
src/bukkit.ts
src/java.ts
6 changes: 6 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
transform: { '^.+\\.ts?$': 'ts-jest' },
testEnvironment: 'node',
testRegex: '/src/.*\\.(test|spec)?\\.ts$',
moduleFileExtensions: ['ts', 'js', 'json', 'node'],
};
Loading

0 comments on commit 5475560

Please sign in to comment.