@hebcal/icalendar 4.18.4 → 4.18.5

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 v4.18.4 */
1
+ /*! @hebcal/icalendar v4.18.5 */
2
2
  'use strict';
3
3
 
4
4
  var core = require('@hebcal/core');
@@ -6,7 +6,7 @@ var murmurhash3 = require('murmurhash3');
6
6
  var restApi = require('@hebcal/rest-api');
7
7
  var fs = require('fs');
8
8
 
9
- const version="4.18.4";
9
+ const version="4.18.5";
10
10
 
11
11
  const VTIMEZONE = {};
12
12
  const CATEGORY = {
@@ -78,6 +78,8 @@ class IcalEvent {
78
78
  this.locationName = ev.locationName;
79
79
  } else if (mask & core.flags.DAF_YOMI) {
80
80
  this.locationName = core.Locale.gettext('Daf Yomi');
81
+ } else if (mask & core.flags.YERUSHALMI_YOMI) {
82
+ this.locationName = core.Locale.gettext('Yerushalmi Yomi');
81
83
  } else if (mask & core.flags.MISHNA_YOMI) {
82
84
  this.locationName = core.Locale.gettext('Mishna Yomi');
83
85
  } else if (timed && options.location && options.location.name) {
package/dist/index.mjs CHANGED
@@ -1,10 +1,10 @@
1
- /*! @hebcal/icalendar v4.18.4 */
1
+ /*! @hebcal/icalendar v4.18.5 */
2
2
  import { flags, Locale, greg } from '@hebcal/core';
3
3
  import { murmur32HexSync } from 'murmurhash3';
4
4
  import { shouldRenderBrief, pad2, getEventCategories, makeAnchor, pad4, getHolidayDescription, getCalendarTitle, appendIsraelAndTracking, makeTorahMemoText } from '@hebcal/rest-api';
5
5
  import { promises } from 'fs';
6
6
 
7
- const version="4.18.4";
7
+ const version="4.18.5";
8
8
 
9
9
  const VTIMEZONE = {};
10
10
  const CATEGORY = {
@@ -76,6 +76,8 @@ class IcalEvent {
76
76
  this.locationName = ev.locationName;
77
77
  } else if (mask & flags.DAF_YOMI) {
78
78
  this.locationName = Locale.gettext('Daf Yomi');
79
+ } else if (mask & flags.YERUSHALMI_YOMI) {
80
+ this.locationName = Locale.gettext('Yerushalmi Yomi');
79
81
  } else if (mask & flags.MISHNA_YOMI) {
80
82
  this.locationName = Locale.gettext('Mishna Yomi');
81
83
  } else if (timed && options.location && options.location.name) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hebcal/icalendar",
3
- "version": "4.18.4",
3
+ "version": "4.18.5",
4
4
  "author": "Michael J. Radwin (https://github.com/mjradwin)",
5
5
  "keywords": [
6
6
  "ical",
@@ -24,8 +24,8 @@
24
24
  "url": "https://github.com/hebcal/hebcal-icalendar/issues"
25
25
  },
26
26
  "dependencies": {
27
- "@hebcal/core": "^3.46.1",
28
- "@hebcal/rest-api": "^4.3.7",
27
+ "@hebcal/core": "^3.46.5",
28
+ "@hebcal/rest-api": "^4.3.8",
29
29
  "murmurhash3": "^0.5.0"
30
30
  },
31
31
  "scripts": {
@@ -48,17 +48,17 @@
48
48
  "verbose": true
49
49
  },
50
50
  "devDependencies": {
51
- "@babel/core": "^7.20.2",
51
+ "@babel/core": "^7.20.5",
52
52
  "@babel/preset-env": "^7.20.2",
53
53
  "@babel/register": "^7.18.9",
54
- "@rollup/plugin-babel": "^6.0.2",
55
- "@rollup/plugin-commonjs": "^23.0.2",
56
- "@rollup/plugin-json": "^5.0.1",
54
+ "@rollup/plugin-babel": "^6.0.3",
55
+ "@rollup/plugin-commonjs": "^23.0.3",
56
+ "@rollup/plugin-json": "^5.0.2",
57
57
  "ava": "^5.1.0",
58
58
  "eslint": "^8.28.0",
59
59
  "eslint-config-google": "^0.14.0",
60
60
  "jsdoc": "^4.0.0",
61
- "jsdoc-to-markdown": "^7.1.1",
62
- "rollup": "^3.4.0"
61
+ "jsdoc-to-markdown": "^8.0.0",
62
+ "rollup": "^3.5.1"
63
63
  }
64
64
  }