Skip to content

Commit

Permalink
fix import bug
Browse files Browse the repository at this point in the history
  • Loading branch information
PeronGH committed Sep 7, 2022
1 parent 0ae7772 commit e264d70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ export type {
RecurrenceRule,
} from 'https://deno.land/x/simple_ics@0.0.11/mod.ts';

export { Event, Calendar } from 'https://deno.land/x/simple_ics@0.0.9/mod.ts';
export { Event, Calendar } from 'https://deno.land/x/simple_ics@0.0.11/mod.ts';
2 changes: 2 additions & 0 deletions tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Deno.test({

const calendar = genCalendar(lessons);

console.log(calendar.toLines());

Deno.writeTextFileSync('test.ics', calendar.toString());
},
});

0 comments on commit e264d70

Please sign in to comment.