Skip to content

Commit

Permalink
dist/es => dist/esm
Browse files Browse the repository at this point in the history
  • Loading branch information
mjradwin committed Nov 8, 2024
1 parent 1ce23da commit edef5bf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion size-demo/getHoliday.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import {HDate} from '@hebcal/hdate';
import {getHolidaysOnDate} from '../dist/es/holidays';
import {getHolidaysOnDate} from '../dist/esm/holidays';
console.log(getHolidaysOnDate(new HDate(1, 1, 5757)));
2 changes: 1 addition & 1 deletion size-demo/parshiyot.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {calendar} from '../dist/es/calendar';
import {calendar} from '../dist/esm/calendar';

const events = calendar({
year: new Date().getFullYear() - 1,
Expand Down
2 changes: 1 addition & 1 deletion size-demo/sedra.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import {getSedra} from '../dist/es/sedra';
import {getSedra} from '../dist/esm/sedra';
const sedra = getSedra(5757, false);
console.log(sedra.get(56));
2 changes: 1 addition & 1 deletion size-demo/tachanun.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import {tachanun} from '../dist/es/tachanun';
import {tachanun} from '../dist/esm/tachanun';
import {HDate} from '@hebcal/hdate';
console.log(tachanun(new HDate(1, 1, 5757), true));

0 comments on commit edef5bf

Please sign in to comment.