Skip to content

Commit 29bab56

Browse files
committed
0.0.8
1 parent 5aec8c9 commit 29bab56

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66

7+
## [0.0.8] - 2023-07-03
8+
9+
### Added
10+
11+
- Support for nested files inside of each event folder.
12+
713
## [0.0.7] - 2023-07-02
814

915
### Changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "commandkit",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"main": "dist/index.js",
55
"license": "MIT",
66
"scripts": {

src/handlers/event-handler/EventHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class EventHandler {
2020
for (const eventFolderPath of eventFolderPaths) {
2121
const eventName = eventFolderPath.replace(/\\/g, '/').split('/').pop() as string;
2222

23-
const eventFilePaths = getFilePaths(eventFolderPath).filter(
23+
const eventFilePaths = getFilePaths(eventFolderPath, true).filter(
2424
(path) => path.endsWith('.js') || path.endsWith('.ts')
2525
);
2626

0 commit comments

Comments
 (0)