File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ const SPEAKERS_URL = "https://programapi24.europython.eu/2024/speakers.json";
1111const SCHEDULE_URL = "https://programapi24.europython.eu/2024/schedule.json" ;
1212
1313// Define output directory and file paths
14- const DATA_DIR = path . join ( __dirname , ' ../data' ) ;
15- const SESSIONS_FILE = path . join ( DATA_DIR , ' sessions.json' ) ;
16- const SPEAKERS_FILE = path . join ( DATA_DIR , ' speakers.json' ) ;
17- const SCHEDULE_FILE = path . join ( DATA_DIR , ' schedule.json' ) ;
14+ const DATA_DIR = path . join ( __dirname , " ../data" ) ;
15+ const SESSIONS_FILE = path . join ( DATA_DIR , " sessions.json" ) ;
16+ const SPEAKERS_FILE = path . join ( DATA_DIR , " speakers.json" ) ;
17+ const SCHEDULE_FILE = path . join ( DATA_DIR , " schedule.json" ) ;
1818
1919// Ensure data directory exists
2020fs . mkdirSync ( DATA_DIR , { recursive : true } ) ;
You can’t perform that action at this time.
0 commit comments