@hebcal/core 3.28.1 → 3.29.3
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/bundle.js +4822 -4166
- package/dist/bundle.min.js +2 -2
- package/dist/hdate-bundle.js +928 -1839
- package/dist/hdate-bundle.min.js +2 -2
- package/dist/hdate.js +32 -15
- package/dist/hdate.mjs +32 -15
- package/dist/index.js +109 -85
- package/dist/index.mjs +109 -85
- package/package.json +6 -6
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @hebcal/core v3.
|
|
1
|
+
/*! @hebcal/core v3.29.3 */
|
|
2
2
|
/*
|
|
3
3
|
Hebcal - A Jewish Calendar Generator
|
|
4
4
|
Copyright (c) 1994-2020 Danny Sadinoff
|
|
@@ -967,20 +967,9 @@ class HDate$1 {
|
|
|
967
967
|
render(locale = null, showYear = true) {
|
|
968
968
|
const locale0 = locale || Locale.getLocaleName();
|
|
969
969
|
const day = this.getDate();
|
|
970
|
-
const monthName = Locale.gettext(this.getMonthName(),
|
|
970
|
+
const monthName = Locale.gettext(this.getMonthName(), locale0);
|
|
971
971
|
const nth = Locale.ordinal(day, locale0);
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
if (locale0 === 'en' || locale0 === 's' || 'ashkenazi' == locale0.substring(0, 9)) {
|
|
975
|
-
dayOf = ' of';
|
|
976
|
-
} else {
|
|
977
|
-
const ofStr = Locale.lookupTranslation('of', locale0);
|
|
978
|
-
|
|
979
|
-
if (ofStr) {
|
|
980
|
-
dayOf = ' ' + ofStr;
|
|
981
|
-
}
|
|
982
|
-
}
|
|
983
|
-
|
|
972
|
+
const dayOf = HDate$1.getDayOfTranslation(locale0);
|
|
984
973
|
const dateStr = `${nth}${dayOf} ${monthName}`;
|
|
985
974
|
|
|
986
975
|
if (showYear) {
|
|
@@ -990,6 +979,34 @@ class HDate$1 {
|
|
|
990
979
|
return dateStr;
|
|
991
980
|
}
|
|
992
981
|
}
|
|
982
|
+
/**
|
|
983
|
+
* @private
|
|
984
|
+
* @param {string} locale
|
|
985
|
+
* @return {string}
|
|
986
|
+
*/
|
|
987
|
+
|
|
988
|
+
|
|
989
|
+
static getDayOfTranslation(locale) {
|
|
990
|
+
switch (locale) {
|
|
991
|
+
case 'en':
|
|
992
|
+
case 's':
|
|
993
|
+
case 'a':
|
|
994
|
+
case 'ashkenazi':
|
|
995
|
+
return ' of';
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
const ofStr = Locale.lookupTranslation('of', locale);
|
|
999
|
+
|
|
1000
|
+
if (ofStr) {
|
|
1001
|
+
return ' ' + ofStr;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
if ('ashkenazi' === locale.substring(0, 9)) {
|
|
1005
|
+
return ' of';
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
return '';
|
|
1009
|
+
}
|
|
993
1010
|
/**
|
|
994
1011
|
* Renders this Hebrew date in Hebrew gematriya, regardless of locale.
|
|
995
1012
|
* @example
|
|
@@ -1945,6 +1962,13 @@ class HebrewDateEvent extends Event {
|
|
|
1945
1962
|
|
|
1946
1963
|
}
|
|
1947
1964
|
|
|
1965
|
+
var sun = {};
|
|
1966
|
+
|
|
1967
|
+
Object.defineProperty(sun, "__esModule", {
|
|
1968
|
+
value: true
|
|
1969
|
+
});
|
|
1970
|
+
var Sun_1 = sun.Sun = void 0;
|
|
1971
|
+
|
|
1948
1972
|
class Sun {
|
|
1949
1973
|
constructor(date, latitude, longitude) {
|
|
1950
1974
|
this.date = date;
|
|
@@ -1963,13 +1987,15 @@ class Sun {
|
|
|
1963
1987
|
|
|
1964
1988
|
}
|
|
1965
1989
|
|
|
1966
|
-
|
|
1967
|
-
|
|
1990
|
+
Sun_1 = sun.Sun = Sun;
|
|
1991
|
+
|
|
1992
|
+
function formatDate(date, minutes) {
|
|
1993
|
+
const seconds = (minutes - Math.floor(minutes)) * 60;
|
|
1968
1994
|
return new Date(Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), 0, minutes, seconds));
|
|
1969
|
-
}
|
|
1995
|
+
}
|
|
1970
1996
|
|
|
1971
1997
|
function calcTimeJulianCent(jd) {
|
|
1972
|
-
|
|
1998
|
+
const T = (jd - 2451545.0) / 36525.0;
|
|
1973
1999
|
return T;
|
|
1974
2000
|
}
|
|
1975
2001
|
|
|
@@ -1982,7 +2008,7 @@ function degToRad(angleDeg) {
|
|
|
1982
2008
|
}
|
|
1983
2009
|
|
|
1984
2010
|
function calcGeomMeanLongSun(t) {
|
|
1985
|
-
|
|
2011
|
+
let L0 = 280.46646 + t * (36000.76983 + t * 0.0003032);
|
|
1986
2012
|
|
|
1987
2013
|
while (L0 > 360.0) {
|
|
1988
2014
|
L0 -= 360.0;
|
|
@@ -1996,90 +2022,90 @@ function calcGeomMeanLongSun(t) {
|
|
|
1996
2022
|
}
|
|
1997
2023
|
|
|
1998
2024
|
function calcGeomMeanAnomalySun(t) {
|
|
1999
|
-
|
|
2025
|
+
const M = 357.52911 + t * (35999.05029 - 0.0001537 * t);
|
|
2000
2026
|
return M; // in degrees
|
|
2001
2027
|
}
|
|
2002
2028
|
|
|
2003
2029
|
function calcEccentricityEarthOrbit(t) {
|
|
2004
|
-
|
|
2030
|
+
const e = 0.016708634 - t * (0.000042037 + 0.0000001267 * t);
|
|
2005
2031
|
return e; // unitless
|
|
2006
2032
|
}
|
|
2007
2033
|
|
|
2008
2034
|
function calcSunEqOfCenter(t) {
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2035
|
+
const m = calcGeomMeanAnomalySun(t);
|
|
2036
|
+
const mrad = degToRad(m);
|
|
2037
|
+
const sinm = Math.sin(mrad);
|
|
2038
|
+
const sin2m = Math.sin(mrad + mrad);
|
|
2039
|
+
const sin3m = Math.sin(mrad + mrad + mrad);
|
|
2040
|
+
const C = sinm * (1.914602 - t * (0.004817 + 0.000014 * t)) + sin2m * (0.019993 - 0.000101 * t) + sin3m * 0.000289;
|
|
2015
2041
|
return C; // in degrees
|
|
2016
2042
|
}
|
|
2017
2043
|
|
|
2018
2044
|
function calcSunTrueLong(t) {
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2045
|
+
const l0 = calcGeomMeanLongSun(t);
|
|
2046
|
+
const c = calcSunEqOfCenter(t);
|
|
2047
|
+
const O = l0 + c;
|
|
2022
2048
|
return O; // in degrees
|
|
2023
2049
|
}
|
|
2024
2050
|
|
|
2025
2051
|
function calcSunApparentLong(t) {
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2052
|
+
const o = calcSunTrueLong(t);
|
|
2053
|
+
const omega = 125.04 - 1934.136 * t;
|
|
2054
|
+
const lambda = o - 0.00569 - 0.00478 * Math.sin(degToRad(omega));
|
|
2029
2055
|
return lambda; // in degrees
|
|
2030
2056
|
}
|
|
2031
2057
|
|
|
2032
2058
|
function calcMeanObliquityOfEcliptic(t) {
|
|
2033
|
-
|
|
2034
|
-
|
|
2059
|
+
const seconds = 21.448 - t * (46.8150 + t * (0.00059 - t * 0.001813));
|
|
2060
|
+
const e0 = 23.0 + (26.0 + seconds / 60.0) / 60.0;
|
|
2035
2061
|
return e0; // in degrees
|
|
2036
2062
|
}
|
|
2037
2063
|
|
|
2038
2064
|
function calcObliquityCorrection(t) {
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2065
|
+
const e0 = calcMeanObliquityOfEcliptic(t);
|
|
2066
|
+
const omega = 125.04 - 1934.136 * t;
|
|
2067
|
+
const e = e0 + 0.00256 * Math.cos(degToRad(omega));
|
|
2042
2068
|
return e; // in degrees
|
|
2043
2069
|
}
|
|
2044
2070
|
|
|
2045
2071
|
function calcSunDeclination(t) {
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2072
|
+
const e = calcObliquityCorrection(t);
|
|
2073
|
+
const lambda = calcSunApparentLong(t);
|
|
2074
|
+
const sint = Math.sin(degToRad(e)) * Math.sin(degToRad(lambda));
|
|
2075
|
+
const theta = radToDeg(Math.asin(sint));
|
|
2050
2076
|
return theta; // in degrees
|
|
2051
2077
|
}
|
|
2052
2078
|
|
|
2053
2079
|
function calcEquationOfTime(t) {
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2080
|
+
const epsilon = calcObliquityCorrection(t);
|
|
2081
|
+
const l0 = calcGeomMeanLongSun(t);
|
|
2082
|
+
const e = calcEccentricityEarthOrbit(t);
|
|
2083
|
+
const m = calcGeomMeanAnomalySun(t);
|
|
2084
|
+
let y = Math.tan(degToRad(epsilon) / 2.0);
|
|
2059
2085
|
y *= y;
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2086
|
+
const sin2l0 = Math.sin(2.0 * degToRad(l0));
|
|
2087
|
+
const sinm = Math.sin(degToRad(m));
|
|
2088
|
+
const cos2l0 = Math.cos(2.0 * degToRad(l0));
|
|
2089
|
+
const sin4l0 = Math.sin(4.0 * degToRad(l0));
|
|
2090
|
+
const sin2m = Math.sin(2.0 * degToRad(m));
|
|
2091
|
+
const Etime = y * sin2l0 - 2.0 * e * sinm + 4.0 * e * y * sinm * cos2l0 - 0.5 * y * y * sin4l0 - 1.25 * e * e * sin2m;
|
|
2066
2092
|
return radToDeg(Etime) * 4.0; // in minutes of time
|
|
2067
2093
|
}
|
|
2068
2094
|
|
|
2069
2095
|
function calcHourAngle(angle, lat, solarDec) {
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2096
|
+
const latRad = degToRad(lat);
|
|
2097
|
+
const sdRad = degToRad(solarDec);
|
|
2098
|
+
const HAarg = Math.cos(degToRad(90 + angle)) / (Math.cos(latRad) * Math.cos(sdRad)) - Math.tan(latRad) * Math.tan(sdRad);
|
|
2099
|
+
const HA = Math.acos(HAarg);
|
|
2074
2100
|
return HA; // in radians (for sunset, use -HA)
|
|
2075
2101
|
}
|
|
2076
2102
|
|
|
2077
2103
|
function isNumber(inputVal) {
|
|
2078
|
-
|
|
2079
|
-
|
|
2104
|
+
let oneDecimal = false;
|
|
2105
|
+
const inputStr = `${inputVal}`;
|
|
2080
2106
|
|
|
2081
|
-
for (
|
|
2082
|
-
|
|
2107
|
+
for (let i = 0; i < inputStr.length; i++) {
|
|
2108
|
+
const oneChar = inputStr.charAt(i);
|
|
2083
2109
|
|
|
2084
2110
|
if (i === 0 && (oneChar === '-' || oneChar === '+')) {
|
|
2085
2111
|
continue;
|
|
@@ -2099,29 +2125,29 @@ function isNumber(inputVal) {
|
|
|
2099
2125
|
}
|
|
2100
2126
|
|
|
2101
2127
|
function getJD(date) {
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2128
|
+
let year = date.getFullYear();
|
|
2129
|
+
let month = date.getMonth() + 1;
|
|
2130
|
+
const day = date.getDate();
|
|
2105
2131
|
|
|
2106
2132
|
if (month < 3) {
|
|
2107
2133
|
year--;
|
|
2108
2134
|
month += 12;
|
|
2109
2135
|
}
|
|
2110
2136
|
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2137
|
+
const A = Math.floor(year / 100);
|
|
2138
|
+
const B = 2 - A + Math.floor(A / 4);
|
|
2139
|
+
const JD = Math.floor(365.25 * (year + 4716)) + Math.floor(30.6001 * (month + 1)) + day + B - 1524.5;
|
|
2114
2140
|
return JD;
|
|
2115
2141
|
}
|
|
2116
2142
|
|
|
2117
2143
|
function calcSolNoon(jd, longitude, date) {
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2144
|
+
const tnoon = calcTimeJulianCent(jd - longitude / 360.0);
|
|
2145
|
+
let eqTime = calcEquationOfTime(tnoon);
|
|
2146
|
+
const solNoonOffset = 720.0 - longitude * 4 - eqTime; // in minutes
|
|
2121
2147
|
|
|
2122
|
-
|
|
2148
|
+
const newt = calcTimeJulianCent(jd + solNoonOffset / 1440.0);
|
|
2123
2149
|
eqTime = calcEquationOfTime(newt);
|
|
2124
|
-
|
|
2150
|
+
let solNoonLocal = 720 - longitude * 4 - eqTime; // in minutes
|
|
2125
2151
|
|
|
2126
2152
|
while (solNoonLocal < 0.0) {
|
|
2127
2153
|
solNoonLocal += 1440.0;
|
|
@@ -2135,22 +2161,22 @@ function calcSolNoon(jd, longitude, date) {
|
|
|
2135
2161
|
}
|
|
2136
2162
|
|
|
2137
2163
|
function calcSunriseSetUTC(rise, angle, JD, latitude, longitude) {
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2164
|
+
const t = calcTimeJulianCent(JD);
|
|
2165
|
+
const eqTime = calcEquationOfTime(t);
|
|
2166
|
+
const solarDec = calcSunDeclination(t);
|
|
2167
|
+
let hourAngle = calcHourAngle(angle, latitude, solarDec); //alert("HA = " + radToDeg(hourAngle));
|
|
2142
2168
|
|
|
2143
2169
|
if (!rise) hourAngle = -hourAngle;
|
|
2144
|
-
|
|
2145
|
-
|
|
2170
|
+
const delta = longitude + radToDeg(hourAngle);
|
|
2171
|
+
const timeUTC = 720 - 4.0 * delta - eqTime; // in minutes
|
|
2146
2172
|
|
|
2147
2173
|
return timeUTC;
|
|
2148
2174
|
}
|
|
2149
2175
|
|
|
2150
2176
|
function calcSunriseSet(rise, angle, JD, date, latitude, longitude) // rise = 1 for sunrise, 0 for sunset
|
|
2151
2177
|
{
|
|
2152
|
-
|
|
2153
|
-
|
|
2178
|
+
const timeUTC = calcSunriseSetUTC(rise, angle, JD, latitude, longitude);
|
|
2179
|
+
const newTimeUTC = calcSunriseSetUTC(rise, angle, JD + timeUTC / 1440.0, latitude, longitude);
|
|
2154
2180
|
|
|
2155
2181
|
if (isNumber(newTimeUTC)) {
|
|
2156
2182
|
return formatDate(date, newTimeUTC);
|
|
@@ -2160,8 +2186,6 @@ function calcSunriseSet(rise, angle, JD, date, latitude, longitude) // rise = 1
|
|
|
2160
2186
|
}
|
|
2161
2187
|
}
|
|
2162
2188
|
|
|
2163
|
-
var sun = Sun;
|
|
2164
|
-
|
|
2165
2189
|
const _formatters = {};
|
|
2166
2190
|
/**
|
|
2167
2191
|
* @private
|
|
@@ -2298,7 +2322,7 @@ class Zmanim {
|
|
|
2298
2322
|
|
|
2299
2323
|
const dt = greg.isDate(date) ? date : HDate$1.isHDate(date) ? date.greg() : throwTypeError$1(`invalid date: ${date}`);
|
|
2300
2324
|
this.date = dt;
|
|
2301
|
-
this.sun = new
|
|
2325
|
+
this.sun = new Sun_1(this.date, latitude, longitude);
|
|
2302
2326
|
this.latitude = latitude;
|
|
2303
2327
|
this.longitude = longitude;
|
|
2304
2328
|
}
|
|
@@ -4663,9 +4687,9 @@ function getHolidaysForYear(year) {
|
|
|
4663
4687
|
return h;
|
|
4664
4688
|
}
|
|
4665
4689
|
|
|
4666
|
-
var version="3.
|
|
4690
|
+
var version="3.29.3";
|
|
4667
4691
|
|
|
4668
|
-
var headers$1={"plural-forms":"nplurals=2; plural=(n > 1);",language:"en_CA@ashkenazi"};var contexts$1={"":{Berachot:["Berachos"],Shabbat:["Shabbos"],Taanit:["Taanis"],Yevamot:["Yevamos"],Ketubot:["Kesubos"],"Baba Batra":["Baba Basra"],Makkot:["Makkos"],Shevuot:["Shevuos"],Horayot:["Horayos"],Menachot:["Menachos"],Bechorot:["Bechoros"],Keritot:["Kerisos"],Midot:["Midos"],"Achrei Mot":["Achrei Mos"],Bechukotai:["Bechukosai"],"Beha'alotcha":["Beha'aloscha"],Bereshit:["Bereshis"],Chukat:["Chukas"],"Erev Shavuot":["Erev Shavuos"],"Erev Sukkot":["Erev Sukkos"],"Ki Tavo":["Ki Savo"],"Ki Teitzei":["Ki Seitzei"],"Ki Tisa":["Ki Sisa"],Matot:["Matos"],"Purim Katan":["Purim Koton"],Tazria:["Sazria"],"Shabbat Chazon":["Shabbos Chazon"],"Shabbat HaChodesh":["Shabbos HaChodesh"],"Shabbat HaGadol":["Shabbos HaGadol"],"Shabbat Nachamu":["Shabbos Nachamu"],"Shabbat Parah":["Shabbos Parah"],"Shabbat Shekalim":["Shabbos Shekalim"],"Shabbat Shuva":["Shabbos Shuvah"],"Shabbat Zachor":["Shabbos Zachor"],Shavuot:["Shavuos"],"Shavuot I":["Shavuos I"],"Shavuot II":["Shavuos II"],Shemot:["Shemos"],"Shmini Atzeret":["Shmini Atzeres"],"Simchat Torah":["Simchas Torah"],Sukkot:["Sukkos"],"Sukkot I":["Sukkos I"],"Sukkot II":["Sukkos II"],"Sukkot II (CH''M)":["Sukkos II (CH''M)"],"Sukkot III (CH''M)":["Sukkos III (CH''M)"],"Sukkot IV (CH''M)":["Sukkos IV (CH''M)"],"Sukkot V (CH''M)":["Sukkos V (CH''M)"],"Sukkot VI (CH''M)":["Sukkos VI (CH''M)"],"Sukkot VII (Hoshana Raba)":["Sukkos VII (Hoshana Raba)"],"Ta'anit Bechorot":["Ta'anis Bechoros"],"Ta'anit Esther":["Ta'anis Esther"],Toldot:["Toldos"],Vaetchanan:["Vaeschanan"],Yitro:["Yisro"],"Vezot Haberakhah":["Vezos Haberakhah"],Parashat:["Parshas"],"Leil Selichot":["Leil Selichos"],"Shabbat Mevarchim Chodesh":["Shabbos Mevorchim Chodesh"],"Shabbat Shirah":["Shabbos Shirah"]}};var poAshkenazi = {headers:headers$1,contexts:contexts$1};
|
|
4692
|
+
var headers$1={"plural-forms":"nplurals=2; plural=(n > 1);",language:"en_CA@ashkenazi"};var contexts$1={"":{Berachot:["Berachos"],Shabbat:["Shabbos"],Taanit:["Taanis"],Yevamot:["Yevamos"],Ketubot:["Kesubos"],"Baba Batra":["Baba Basra"],Makkot:["Makkos"],Shevuot:["Shevuos"],Horayot:["Horayos"],Menachot:["Menachos"],Bechorot:["Bechoros"],Keritot:["Kerisos"],Midot:["Midos"],"Achrei Mot":["Achrei Mos"],Bechukotai:["Bechukosai"],"Beha'alotcha":["Beha'aloscha"],Bereshit:["Bereshis"],Chukat:["Chukas"],"Erev Shavuot":["Erev Shavuos"],"Erev Sukkot":["Erev Sukkos"],"Ki Tavo":["Ki Savo"],"Ki Teitzei":["Ki Seitzei"],"Ki Tisa":["Ki Sisa"],Matot:["Matos"],"Purim Katan":["Purim Koton"],Tazria:["Sazria"],"Shabbat Chazon":["Shabbos Chazon"],"Shabbat HaChodesh":["Shabbos HaChodesh"],"Shabbat HaGadol":["Shabbos HaGadol"],"Shabbat Nachamu":["Shabbos Nachamu"],"Shabbat Parah":["Shabbos Parah"],"Shabbat Shekalim":["Shabbos Shekalim"],"Shabbat Shuva":["Shabbos Shuvah"],"Shabbat Zachor":["Shabbos Zachor"],Shavuot:["Shavuos"],"Shavuot I":["Shavuos I"],"Shavuot II":["Shavuos II"],Shemot:["Shemos"],"Shmini Atzeret":["Shmini Atzeres"],"Simchat Torah":["Simchas Torah"],Sukkot:["Sukkos"],"Sukkot I":["Sukkos I"],"Sukkot II":["Sukkos II"],"Sukkot II (CH''M)":["Sukkos II (CH''M)"],"Sukkot III (CH''M)":["Sukkos III (CH''M)"],"Sukkot IV (CH''M)":["Sukkos IV (CH''M)"],"Sukkot V (CH''M)":["Sukkos V (CH''M)"],"Sukkot VI (CH''M)":["Sukkos VI (CH''M)"],"Sukkot VII (Hoshana Raba)":["Sukkos VII (Hoshana Raba)"],"Ta'anit Bechorot":["Ta'anis Bechoros"],"Ta'anit Esther":["Ta'anis Esther"],Toldot:["Toldos"],Vaetchanan:["Vaeschanan"],Yitro:["Yisro"],"Vezot Haberakhah":["Vezos Haberakhah"],Parashat:["Parshas"],"Leil Selichot":["Leil Selichos"],"Shabbat Mevarchim Chodesh":["Shabbos Mevorchim Chodesh"],"Shabbat Shirah":["Shabbos Shirah"],Tevet:["Teves"],"Asara B'Tevet":["Asara B'Teves"]}};var poAshkenazi = {headers:headers$1,contexts:contexts$1};
|
|
4669
4693
|
|
|
4670
4694
|
Locale.addLocale('ashkenazi', poAshkenazi);
|
|
4671
4695
|
Locale.addLocale('a', poAshkenazi);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hebcal/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.29.3",
|
|
4
4
|
"author": "Michael J. Radwin (https://github.com/mjradwin)",
|
|
5
5
|
"contributors": [
|
|
6
6
|
"Eyal Schachter (https://github.com/Scimonster)",
|
|
@@ -71,21 +71,21 @@
|
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@ava/babel": "^2.0.0",
|
|
73
73
|
"@babel/core": "^7.16.0",
|
|
74
|
-
"@babel/preset-env": "^7.16.
|
|
74
|
+
"@babel/preset-env": "^7.16.4",
|
|
75
75
|
"@babel/register": "^7.16.0",
|
|
76
|
-
"@hebcal/solar-calc": "^1.0
|
|
76
|
+
"@hebcal/solar-calc": "^1.1.0",
|
|
77
77
|
"@rollup/plugin-babel": "^5.3.0",
|
|
78
78
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
79
79
|
"@rollup/plugin-json": "^4.1.0",
|
|
80
80
|
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
81
81
|
"ava": "^3.15.0",
|
|
82
|
-
"core-js": "^3.19.
|
|
83
|
-
"eslint": "^8.
|
|
82
|
+
"core-js": "^3.19.2",
|
|
83
|
+
"eslint": "^8.3.0",
|
|
84
84
|
"eslint-config-google": "^0.14.0",
|
|
85
85
|
"jsdoc": "^3.6.7",
|
|
86
86
|
"jsdoc-to-markdown": "^7.1.0",
|
|
87
87
|
"nyc": "^15.1.0",
|
|
88
|
-
"rollup": "^2.
|
|
88
|
+
"rollup": "^2.60.1",
|
|
89
89
|
"rollup-plugin-terser": "^7.0.2",
|
|
90
90
|
"tsd-jsdoc": "^2.5.0",
|
|
91
91
|
"ttag-cli": "^1.9.3"
|