jewish-date 1.0.7 → 1.0.8

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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
- # Jewish Date · [![npm version](https://img.shields.io/npm/v/jewish-date.svg)](https://www.npmjs.com/package/jewish-date) [![npm bundle size](https://badgen.net/bundlephobia/minzip/jewish-date)](https://bundlephobia.com/package/jewish-date) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/Shmulik-Kravitz/jewish-date/blob/master/LICENSE) ![main workflow](https://github.com/Shmulik-Kravitz/jewish-date/actions/workflows/main.yml/badge.svg) ![Code Coverage](https://img.shields.io/badge/Code%20Coverage-100%25-success?style=flat)
1
+ # Jewish Date · [![npm version](https://img.shields.io/npm/v/jewish-date.svg)](https://www.npmjs.com/package/jewish-date) [![npm bundle size](https://img.shields.io/bundlephobia/minzip/jewish-date.svg)](https://bundlephobia.com/package/jewish-date) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/Shmulik-Kravitz/jewish-date/blob/master/LICENSE) ![main workflow](https://github.com/Shmulik-Kravitz/jewish-date/actions/workflows/main.yml/badge.svg) ![Code Coverage](https://img.shields.io/badge/Code%20Coverage-100%25-success?style=flat)
2
2
 
3
3
  ## Jewish Date is a Hebrew date to Gregorian date and vice versa converter
4
4
 
5
5
  * 🌐 Works with both Node.js and the browser
6
- * 📦 2kB mini library (minified & gzip)
6
+ * 📦 2.5kB mini library (minified & gzip)
7
7
  * 📜 MIT License
8
8
  * 🔧 Easy to use
9
9
 
@@ -25,7 +25,7 @@ npm install jewish-date --save
25
25
 
26
26
  ```js
27
27
  import {
28
- toJewishDate, formatJewishDate, toHebrewJewishDate, formatJewishDateInHebrew, toGregorianDate, , JewishMonth
28
+ toJewishDate, formatJewishDate, toHebrewJewishDate, formatJewishDateInHebrew, toGregorianDate, JewishMonth
29
29
  } from "jewish-date";
30
30
 
31
31
  const date = new Date("2020-01-01");
@@ -52,7 +52,7 @@ Replace
52
52
 
53
53
  ```js
54
54
  import {
55
- toJewishDate, toGregorianDate, formatJewishDateInHebrew, toHebrewJewishDate
55
+ toJewishDate, formatJewishDate, toHebrewJewishDate, formatJewishDateInHebrew, toGregorianDate, JewishMonth
56
56
  } from "jewish-date";
57
57
  ```
58
58
 
@@ -60,7 +60,7 @@ With
60
60
 
61
61
  ```js
62
62
  const {
63
- toJewishDate, toGregorianDate, formatJewishDateInHebrew, toHebrewJewishDate
63
+ toJewishDate, formatJewishDate, toHebrewJewishDate, formatJewishDateInHebrew, toGregorianDate, JewishMonth
64
64
  } = require("jewish-date");
65
65
  ```
66
66
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jewish-date",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "lib/index.d.ts",