Skip to content

Commit

Permalink
fix: added more missing .js endings in imports
Browse files Browse the repository at this point in the history
  • Loading branch information
SachsenspieltCoding committed Aug 31, 2024
1 parent b8d853f commit 2aa0f70
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/parser/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { CourseParser } from './course';
import type { LessonParser } from './lesson';
import type { PlannedLessonParser } from './plannedLesson';
import type { SchoolClassParser } from './schoolClass';
import type { SubstitutionPlanParser } from './substitutionPlan';
import type { CourseParser } from './course.js';
import type { LessonParser } from './lesson.js';
import type { PlannedLessonParser } from './plannedLesson.js';
import type { SchoolClassParser } from './schoolClass.js';
import type { SubstitutionPlanParser } from './substitutionPlan.js';

export type {
CourseParser,
Expand Down
2 changes: 1 addition & 1 deletion src/parser/infoFile.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseIniFromString } from 'cool-ini-parser';
import { parseLocalizedDate } from './generic/date';
import { parseLocalizedDate } from './generic/date.js';

export function parseAvailableDates(file: any): Date[] {
const parsed = parseIniFromString(file);
Expand Down

0 comments on commit 2aa0f70

Please sign in to comment.