🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

calendar-dates

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

calendar-dates - npm Package Compare versions

Comparing version

to
0.0.4

dist/calendardates.cjs.js

2

package.json
{
"name": "calendar-dates",
"version": "0.0.3",
"version": "0.0.4",
"license": "MIT",

@@ -5,0 +5,0 @@ "author": "Sung Kim",

### What is this?
Get a list of calendar dates.
This is to be used mainly for Calendar control developers.
This library is not yet tested.
Very Alpha-ish release.
I will be adding some tests while learning Jest later on.
### Installation
```bash
npm i calendar-dates
# or
yarn add calendar-dates
```
### How to use this

@@ -7,7 +7,14 @@ import resolve from "rollup-plugin-node-resolve";

input: "src/index.js",
output: {
file: "dist/calendardates.js",
format: "cjs",
name: "calendar-dates"
},
output: [
{
file: "dist/calendardates.cjs.js",
format: "cjs",
name: "calendar-dates"
},
{
file: "dist/calendardates.esm.js",
format: "cjs",
name: "calendar-dates"
}
],
plugins: [

@@ -14,0 +21,0 @@ resolve(),