ical-generator 7.1.0 → 7.2.0-develop.2
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/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
- package/src/alarm.ts +4 -4
- package/src/attendee.ts +3 -3
- package/src/calendar.ts +3 -3
- package/src/category.ts +1 -1
- package/src/event.ts +6 -6
- package/src/index.ts +8 -8
- package/src/tools.ts +1 -1
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.6",
|
|
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.
|
|
129
|
+
"version": "7.2.0-develop.2"
|
|
129
130
|
}
|
package/src/alarm.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
import ICalEvent from './event.
|
|
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.
|
|
14
|
-
import {ICalDateTimeValue} from './types.
|
|
15
|
-
import ICalAttendee, { ICalAttendeeData } from './attendee.
|
|
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.
|
|
5
|
-
import ICalEvent from './event.
|
|
6
|
-
import ICalAlarm from './alarm.
|
|
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.
|
|
11
|
-
import ICalEvent, {ICalEventData, ICalEventJSONData} from './event.
|
|
12
|
-
import { ICalMomentDurationStub, ICalTimezone } from './types.
|
|
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
package/src/event.ts
CHANGED
|
@@ -13,11 +13,11 @@ import {
|
|
|
13
13
|
isRRule,
|
|
14
14
|
toDate,
|
|
15
15
|
toJSON
|
|
16
|
-
} from './tools.
|
|
17
|
-
import ICalAttendee, {ICalAttendeeData} from './attendee.
|
|
18
|
-
import ICalAlarm, {ICalAlarmData} from './alarm.
|
|
19
|
-
import ICalCategory, {ICalCategoryData} from './category.
|
|
20
|
-
import ICalCalendar from './calendar.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
79
|
+
} from './calendar.ts';
|
|
80
80
|
|
|
81
81
|
export {
|
|
82
82
|
default as ICalCategory,
|
|
83
83
|
ICalCategoryData,
|
|
84
84
|
ICalCategoryJSONData
|
|
85
|
-
} from './category.
|
|
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.
|
|
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.
|
|
116
|
+
} from './types.ts';
|
|
117
117
|
|
|
118
118
|
export {
|
|
119
119
|
formatDate,
|
|
120
120
|
formatDateTZ,
|
|
121
121
|
escape,
|
|
122
122
|
foldLines
|
|
123
|
-
} from './tools.
|
|
123
|
+
} from './tools.ts';
|