ical-generator 3.6.0 → 3.6.1-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/dist/alarm.d.ts CHANGED
@@ -4,7 +4,7 @@ export declare enum ICalAlarmType {
4
4
  display = "display",
5
5
  audio = "audio"
6
6
  }
7
- export declare type ICalAlarmTypeValue = keyof ICalAlarmType;
7
+ export type ICalAlarmTypeValue = keyof ICalAlarmType;
8
8
  export interface ICalAttachment {
9
9
  uri: string;
10
10
  mime: string | null;
package/dist/types.d.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * [Luxon](https://moment.github.io/luxon/)'s [DateTime](https://moment.github.io/luxon/docs/class/src/datetime.js~DateTime.html)
5
5
  * objects. You can also pass a string which is then passed to javascript's Date internally.
6
6
  */
7
- export declare type ICalDateTimeValue = Date | ICalMomentStub | ICalMomentTimezoneStub | ICalLuxonDateTimeStub | ICalDayJsStub | string;
7
+ export type ICalDateTimeValue = Date | ICalMomentStub | ICalMomentTimezoneStub | ICalLuxonDateTimeStub | ICalDayJsStub | string;
8
8
  export interface ICalRepeatingOptions {
9
9
  freq: ICalEventRepeatingFreq;
10
10
  count?: number;
package/package.json CHANGED
@@ -9,25 +9,25 @@
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.3",
12
- "@semantic-release/changelog": "^6.0.1",
12
+ "@semantic-release/changelog": "^6.0.2",
13
13
  "@semantic-release/exec": "^6.0.3",
14
14
  "@semantic-release/git": "^10.0.1",
15
15
  "@semantic-release/npm": "^9.0.1",
16
16
  "@touch4it/ical-timezones": "^1.8.1",
17
- "@types/luxon": "^3.0.1",
18
- "@types/mocha": "^10.0.0",
19
- "@types/node": "^18.7.20",
20
- "@typescript-eslint/eslint-plugin": "^5.38.0",
21
- "@typescript-eslint/parser": "^5.38.0",
22
- "dayjs": "^1.11.5",
23
- "eslint": "^8.24.0",
24
- "eslint-plugin-jsonc": "^2.4.0",
17
+ "@types/luxon": "^3.1.0",
18
+ "@types/mocha": "^10.0.1",
19
+ "@types/node": "^18.11.10",
20
+ "@typescript-eslint/eslint-plugin": "^5.45.0",
21
+ "@typescript-eslint/parser": "^5.45.0",
22
+ "dayjs": "^1.11.6",
23
+ "eslint": "^8.29.0",
24
+ "eslint-plugin-jsonc": "^2.5.0",
25
25
  "license-checker": "^25.0.1",
26
- "luxon": "^3.0.4",
27
- "mocha": "^10.0.0",
26
+ "luxon": "^3.1.1",
27
+ "mocha": "^10.1.0",
28
28
  "mochawesome": "^7.1.3",
29
29
  "moment": "^2.29.4",
30
- "moment-timezone": "^0.5.37",
30
+ "moment-timezone": "^0.5.39",
31
31
  "nyc": "^15.1.0",
32
32
  "portfinder": "^1.0.32",
33
33
  "rrule": "^2.7.1",
@@ -35,8 +35,8 @@
35
35
  "semantic-release-license": "^1.0.2",
36
36
  "source-map-support": "^0.5.21",
37
37
  "ts-node": "^10.9.1",
38
- "typedoc": "^0.23.15",
39
- "typescript": "^4.8.4"
38
+ "typedoc": "^0.23.21",
39
+ "typescript": "^4.9.3"
40
40
  },
41
41
  "engines": {
42
42
  "node": ">=12.0.0"
@@ -120,5 +120,5 @@
120
120
  "start": "node ./dist/bin/start.js",
121
121
  "test": "mocha"
122
122
  },
123
- "version": "3.6.0"
123
+ "version": "3.6.1-develop.1"
124
124
  }