@hebcal/icalendar 6.1.0 → 6.1.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.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! @hebcal/icalendar v6.1.0 */
1
+ /*! @hebcal/icalendar v6.1.2 */
2
2
  import { flags, Locale, greg } from '@hebcal/core';
3
3
  import { murmur32HexSync } from 'murmurhash3';
4
4
  import { pad2, pad4 } from '@hebcal/hdate';
@@ -7,7 +7,7 @@ import { makeAnchor } from '@hebcal/rest-api/dist/esm/makeAnchor';
7
7
  import { promises } from 'fs';
8
8
 
9
9
  // DO NOT EDIT THIS AUTO-GENERATED FILE!
10
- const version = '6.1.0';
10
+ const version = '6.1.2';
11
11
 
12
12
  const vtimezoneCache = new Map();
13
13
  const CATEGORY = {
@@ -47,7 +47,7 @@ function appendTrackingToUrl(url, options) {
47
47
  if (!utmSource) {
48
48
  const u = new URL(url);
49
49
  if (u.host === 'www.hebcal.com') {
50
- utmSource = 'js';
50
+ utmSource = 'ical';
51
51
  }
52
52
  }
53
53
  const utmMedium = options.utmMedium || 'icalendar';
@@ -1 +1 @@
1
- export declare const version = "6.1.0";
1
+ export declare const version = "6.1.2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hebcal/icalendar",
3
- "version": "6.1.0",
3
+ "version": "6.1.2",
4
4
  "author": "Michael J. Radwin (https://github.com/mjradwin)",
5
5
  "keywords": [
6
6
  "ical",
@@ -12,8 +12,7 @@
12
12
  "module": "dist/index.js",
13
13
  "type": "module",
14
14
  "exports": {
15
- "import": "./dist/index.js",
16
- "types": "./dist/icalendar.d.ts"
15
+ ".": "./dist/index.js"
17
16
  },
18
17
  "typings": "dist/icalendar.d.ts",
19
18
  "engines": {
@@ -30,9 +29,9 @@
30
29
  "url": "https://github.com/hebcal/hebcal-icalendar/issues"
31
30
  },
32
31
  "dependencies": {
33
- "@hebcal/core": "^5.8.3",
34
- "@hebcal/hdate": "^0.12.0",
35
- "@hebcal/rest-api": "^6.1.0",
32
+ "@hebcal/core": "^5.8.6",
33
+ "@hebcal/hdate": "^0.13.2",
34
+ "@hebcal/rest-api": "^6.1.1",
36
35
  "murmurhash3": "^0.5.0",
37
36
  "tslib": "^2.8.1"
38
37
  },
@@ -43,8 +42,7 @@
43
42
  "prepare": "npm run build",
44
43
  "pretest": "npm run build",
45
44
  "docs": "typedoc",
46
- "coverage": "jest --coverage",
47
- "test": "jest",
45
+ "test": "vitest",
48
46
  "lint": "gts lint",
49
47
  "clean": "gts clean",
50
48
  "compile": "tsc",
@@ -52,17 +50,14 @@
52
50
  },
53
51
  "license": "BSD-2-Clause",
54
52
  "devDependencies": {
55
- "@babel/preset-env": "^7.26.0",
56
- "@babel/preset-typescript": "^7.26.0",
57
53
  "@hebcal/learning": "^5.1.2",
58
- "@rollup/plugin-commonjs": "^28.0.1",
59
- "@rollup/plugin-typescript": "^12.1.1",
54
+ "@rollup/plugin-typescript": "^12.1.2",
60
55
  "@types/jest": "^29.5.14",
61
- "@types/node": "22.10.1",
56
+ "@types/node": "22.10.2",
62
57
  "gts": "^5.3.1",
63
- "jest": "^29.7.0",
64
58
  "rollup": "^4.28.1",
65
- "typedoc": "^0.27.3",
66
- "typescript": "^5.7.2"
59
+ "typedoc": "^0.27.5",
60
+ "typescript": "^5.7.2",
61
+ "vitest": "^2.1.8"
67
62
  }
68
63
  }