ical-generator 7.1.0 → 7.2.0-develop.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -9,6 +9,7 @@
9
9
  "description": "ical-generator is a small piece of code which generates ical calendar files",
10
10
  "devDependencies": {
11
11
  "@qiwi/semantic-release-gh-pages-plugin": "^5.2.12",
12
+ "@sebbo2002/semantic-release-jsr": "^1.0.0-develop.5",
12
13
  "@semantic-release/changelog": "^6.0.3",
13
14
  "@semantic-release/exec": "^6.0.3",
14
15
  "@semantic-release/git": "^10.0.1",
@@ -125,5 +126,5 @@
125
126
  "test": "mocha"
126
127
  },
127
128
  "type": "module",
128
- "version": "7.1.0"
129
+ "version": "7.2.0-develop.1"
129
130
  }
package/src/alarm.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- import ICalEvent from './event.js';
3
+ import ICalEvent from './event.ts';
4
4
  import {
5
5
  addOrGetCustomAttributes,
6
6
  formatDate,
@@ -10,9 +10,9 @@ import {
10
10
  toDurationString,
11
11
  toJSON,
12
12
  checkNameAndMail
13
- } from './tools.js';
14
- import {ICalDateTimeValue} from './types.js';
15
- import ICalAttendee, { ICalAttendeeData } from './attendee.js';
13
+ } from './tools.ts';
14
+ import {ICalDateTimeValue} from './types.ts';
15
+ import ICalAttendee, { ICalAttendeeData } from './attendee.ts';
16
16
 
17
17
 
18
18
  export enum ICalAlarmType {
package/src/attendee.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  'use strict';
2
2
 
3
3
 
4
- import {addOrGetCustomAttributes, checkEnum, checkNameAndMail, escape} from './tools.js';
5
- import ICalEvent from './event.js';
6
- import ICalAlarm from './alarm.js';
4
+ import {addOrGetCustomAttributes, checkEnum, checkNameAndMail, escape} from './tools.ts';
5
+ import ICalEvent from './event.ts';
6
+ import ICalAlarm from './alarm.ts';
7
7
 
8
8
 
9
9
  interface ICalInternalAttendeeData {
package/src/calendar.ts CHANGED
@@ -7,9 +7,9 @@ import {
7
7
  generateCustomAttributes,
8
8
  isMomentDuration,
9
9
  toDurationString
10
- } from './tools.js';
11
- import ICalEvent, {ICalEventData, ICalEventJSONData} from './event.js';
12
- import { ICalMomentDurationStub, ICalTimezone } from './types.js';
10
+ } from './tools.ts';
11
+ import ICalEvent, {ICalEventData, ICalEventJSONData} from './event.ts';
12
+ import { ICalMomentDurationStub, ICalTimezone } from './types.ts';
13
13
 
14
14
 
15
15
  export interface ICalCalendarData {
package/src/category.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
 
4
- import {escape} from './tools.js';
4
+ import {escape} from './tools.ts';
5
5
 
6
6
 
7
7
  export interface ICalCategoryData {
package/src/event.ts CHANGED
@@ -13,11 +13,11 @@ import {
13
13
  isRRule,
14
14
  toDate,
15
15
  toJSON
16
- } from './tools.js';
17
- import ICalAttendee, {ICalAttendeeData} from './attendee.js';
18
- import ICalAlarm, {ICalAlarmData} from './alarm.js';
19
- import ICalCategory, {ICalCategoryData} from './category.js';
20
- import ICalCalendar from './calendar.js';
16
+ } from './tools.ts';
17
+ import ICalAttendee, {ICalAttendeeData} from './attendee.ts';
18
+ import ICalAlarm, {ICalAlarmData} from './alarm.ts';
19
+ import ICalCategory, {ICalCategoryData} from './category.ts';
20
+ import ICalCalendar from './calendar.ts';
21
21
  import {
22
22
  ICalDateTimeValue,
23
23
  ICalDescription,
@@ -27,7 +27,7 @@ import {
27
27
  ICalRepeatingOptions,
28
28
  ICalRRuleStub,
29
29
  ICalWeekday
30
- } from './types.js';
30
+ } from './types.ts';
31
31
 
32
32
 
33
33
  export enum ICalEventStatus {
package/src/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  'use strict';
6
6
 
7
- import ICalCalendar, {ICalCalendarData} from './calendar.js';
7
+ import ICalCalendar, {ICalCalendarData} from './calendar.ts';
8
8
 
9
9
 
10
10
  /**
@@ -59,7 +59,7 @@ export {
59
59
  ICalAlarmType,
60
60
  ICalAlarmTypeValue,
61
61
  ICalAttachment,
62
- } from './alarm.js';
62
+ } from './alarm.ts';
63
63
 
64
64
  export {
65
65
  default as ICalAttendee,
@@ -68,7 +68,7 @@ export {
68
68
  ICalAttendeeRole,
69
69
  ICalAttendeeStatus,
70
70
  ICalAttendeeJSONData
71
- } from './attendee.js';
71
+ } from './attendee.ts';
72
72
 
73
73
  export {
74
74
  default as ICalCalendar,
@@ -76,13 +76,13 @@ export {
76
76
  ICalCalendarProdIdData,
77
77
  ICalCalendarMethod,
78
78
  ICalCalendarJSONData
79
- } from './calendar.js';
79
+ } from './calendar.ts';
80
80
 
81
81
  export {
82
82
  default as ICalCategory,
83
83
  ICalCategoryData,
84
84
  ICalCategoryJSONData
85
- } from './category.js';
85
+ } from './category.ts';
86
86
 
87
87
  export {
88
88
  default as ICalEvent,
@@ -93,7 +93,7 @@ export {
93
93
  ICalEventJSONData,
94
94
  ICalEventJSONRepeatingData,
95
95
  ICalEventClass,
96
- } from './event.js';
96
+ } from './event.ts';
97
97
 
98
98
  export {
99
99
  ICalDateTimeValue,
@@ -113,11 +113,11 @@ export {
113
113
  ICalLuxonDateTimeStub,
114
114
  ICalDayJsStub,
115
115
  ICalRRuleStub
116
- } from './types.js';
116
+ } from './types.ts';
117
117
 
118
118
  export {
119
119
  formatDate,
120
120
  formatDateTZ,
121
121
  escape,
122
122
  foldLines
123
- } from './tools.js';
123
+ } from './tools.ts';
package/src/tools.ts CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  ICalMomentStub,
9
9
  ICalMomentTimezoneStub,
10
10
  ICalOrganizer, ICalRRuleStub
11
- } from './types.js';
11
+ } from './types.ts';
12
12
 
13
13
  /**
14
14
  * Converts a valid date/time object supported by this library to a string.