File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
src/handlers/event-handler Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
55The 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
Original file line number Diff line number Diff line change 11{
22 "name" : " commandkit" ,
3- "version" : " 0.0.7 " ,
3+ "version" : " 0.0.8 " ,
44 "main" : " dist/index.js" ,
55 "license" : " MIT" ,
66 "scripts" : {
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments