@hebcal/core 3.32.1 → 3.33.0
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/README.md +118 -5
- package/dist/bundle.js +419 -117
- package/dist/bundle.min.js +2 -2
- package/dist/hdate-bundle.js +2 -2
- package/dist/hdate-bundle.min.js +2 -2
- package/dist/hdate.js +2 -2
- package/dist/hdate.mjs +2 -2
- package/dist/index.js +327 -141
- package/dist/index.mjs +327 -141
- package/hebcal.d.ts +2 -0
- package/package.json +7 -7
package/hebcal.d.ts
CHANGED
|
@@ -545,6 +545,8 @@ declare module '@hebcal/core' {
|
|
|
545
545
|
noHolidays?: boolean;
|
|
546
546
|
/** include Daf Yomi */
|
|
547
547
|
dafyomi?: boolean;
|
|
548
|
+
/** include Mishna Yomi */
|
|
549
|
+
mishnaYomi?: boolean;
|
|
548
550
|
/** include Days of the Omer */
|
|
549
551
|
omer?: boolean;
|
|
550
552
|
/** include event announcing the molad */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hebcal/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.33.0",
|
|
4
4
|
"author": "Michael J. Radwin (https://github.com/mjradwin)",
|
|
5
5
|
"contributors": [
|
|
6
6
|
"Eyal Schachter (https://github.com/Scimonster)",
|
|
@@ -70,22 +70,22 @@
|
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@ava/babel": "^2.0.0",
|
|
73
|
-
"@babel/core": "^7.16.
|
|
74
|
-
"@babel/preset-env": "^7.16.
|
|
75
|
-
"@babel/register": "^7.16.
|
|
73
|
+
"@babel/core": "^7.16.10",
|
|
74
|
+
"@babel/preset-env": "^7.16.11",
|
|
75
|
+
"@babel/register": "^7.16.9",
|
|
76
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.1.3",
|
|
81
81
|
"ava": "^3.15.0",
|
|
82
|
-
"core-js": "^3.20.
|
|
83
|
-
"eslint": "^8.
|
|
82
|
+
"core-js": "^3.20.3",
|
|
83
|
+
"eslint": "^8.7.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.64.0",
|
|
89
89
|
"rollup-plugin-terser": "^7.0.2",
|
|
90
90
|
"tsd-jsdoc": "^2.5.0",
|
|
91
91
|
"ttag-cli": "^1.9.3"
|