ical-generator 5.0.0-develop.1 → 5.0.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/package.json CHANGED
@@ -8,21 +8,21 @@
8
8
  },
9
9
  "description": "ical-generator is a small piece of code which generates ical calendar files",
10
10
  "devDependencies": {
11
- "@qiwi/semantic-release-gh-pages-plugin": "^5.2.5",
11
+ "@qiwi/semantic-release-gh-pages-plugin": "^5.2.6",
12
12
  "@semantic-release/changelog": "^6.0.3",
13
13
  "@semantic-release/exec": "^6.0.3",
14
14
  "@semantic-release/git": "^10.0.1",
15
- "@semantic-release/npm": "^10.0.3",
15
+ "@semantic-release/npm": "^10.0.4",
16
16
  "@touch4it/ical-timezones": "^1.9.0",
17
17
  "@types/luxon": "^3.3.0",
18
18
  "@types/mocha": "^10.0.1",
19
- "@types/node": "^20.2.5",
20
- "@typescript-eslint/eslint-plugin": "^5.59.8",
21
- "@typescript-eslint/parser": "^5.59.8",
22
- "c8": "^7.14.0",
23
- "dayjs": "^1.11.7",
24
- "eslint": "^8.41.0",
25
- "eslint-plugin-jsonc": "^2.8.0",
19
+ "@types/node": "^20.4.2",
20
+ "@typescript-eslint/eslint-plugin": "^5.61.0",
21
+ "@typescript-eslint/parser": "^5.61.0",
22
+ "c8": "^8.0.0",
23
+ "dayjs": "^1.11.9",
24
+ "eslint": "^8.45.0",
25
+ "eslint-plugin-jsonc": "^2.9.0",
26
26
  "esm": "^3.2.25",
27
27
  "license-checker": "^25.0.1",
28
28
  "luxon": "^3.3.0",
@@ -33,13 +33,13 @@
33
33
  "nyc": "^15.1.0",
34
34
  "portfinder": "^1.0.32",
35
35
  "rrule": "^2.7.2",
36
- "semantic-release": "^21.0.2",
36
+ "semantic-release": "^21.0.7",
37
37
  "semantic-release-license": "^1.0.2",
38
38
  "source-map-support": "^0.5.21",
39
39
  "ts-node": "^10.9.1",
40
- "tsup": "^6.7.0",
41
- "typedoc": "^0.24.7",
42
- "typescript": "^5.0.4"
40
+ "tsup": "^7.1.0",
41
+ "typedoc": "^0.24.8",
42
+ "typescript": "^5.1.5"
43
43
  },
44
44
  "engines": {
45
45
  "node": "^16.0.0 || >=18.0.0"
@@ -123,10 +123,10 @@
123
123
  "develop": "ts-node ./src/bin/start.ts",
124
124
  "example": "node ./dist/examples/push.js",
125
125
  "license-check": "license-checker --production --summary",
126
- "lint": "eslint . --ext .ts",
126
+ "lint": "eslint . --ext .ts,.js,.json",
127
127
  "start": "node ./dist/bin/start.js",
128
128
  "test": "mocha"
129
129
  },
130
130
  "type": "module",
131
- "version": "5.0.0-develop.1"
131
+ "version": "5.0.1-develop.1"
132
132
  }
package/src/calendar.ts CHANGED
@@ -9,8 +9,8 @@ import {
9
9
  toDurationString
10
10
  } from './tools.js';
11
11
  import ICalEvent, {ICalEventData, ICalEventJSONData} from './event.js';
12
- import {writeFile, writeFileSync, promises as fsPromises} from 'fs';
13
- import {ServerResponse} from 'http';
12
+ import {writeFile, writeFileSync, promises as fsPromises} from 'node:fs';
13
+ import {ServerResponse} from 'node:http';
14
14
  import { ICalMomentDurationStub, ICalTimezone } from './types.js';
15
15
 
16
16