calendar-month
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"name": "calendar-month", | ||
"version": "0.0.2", | ||
"description": "vanillajs month data handler", | ||
"main": "month.js", | ||
"scripts": { | ||
"test": "node test.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/jstools/month.git" | ||
}, | ||
"keywords": [ | ||
"month", | ||
"calendar" | ||
], | ||
"author": "Jesús Germade <jesus@germade.es>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/jstools/month/issues" | ||
}, | ||
"homepage": "https://github.com/jstools/month#readme", | ||
"devDependencies": { | ||
"nitro": "^1.5.57" | ||
} | ||
} | ||
"name": "calendar-month", | ||
"version": "0.0.3", | ||
"description": "vanillajs month data handler", | ||
"main": "lib/month.js", | ||
"scripts": { | ||
"test": "node test.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/jstools/month.git" | ||
}, | ||
"keywords": [ | ||
"month", | ||
"calendar" | ||
], | ||
"author": "Jesús Germade <jesus@germade.es>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/jstools/month/issues" | ||
}, | ||
"homepage": "https://github.com/jstools/month#readme", | ||
"devDependencies": { | ||
"nitro": "^1.5.57" | ||
} | ||
} |
@@ -28,50 +28,53 @@ | ||
month: 3, | ||
meta: | ||
{ date: 'Tue Mar 01 2016 00:00:00 GMT+0100 (CET)', | ||
lastDay: 31, | ||
lastWeekDay: 4, | ||
startDay: 1 }, | ||
days: | ||
[ { date: 29, previous: true }, | ||
{ date: 1 }, | ||
{ date: 2 }, | ||
{ date: 3 }, | ||
{ date: 4 }, | ||
{ date: 5 }, | ||
{ date: 6 }, | ||
{ date: 7 }, | ||
{ date: 8 }, | ||
{ date: 9 }, | ||
{ date: 10 }, | ||
{ date: 11 }, | ||
{ date: 12 }, | ||
{ date: 13 }, | ||
{ date: 14 }, | ||
{ date: 15 }, | ||
{ date: 16 }, | ||
{ date: 17 }, | ||
{ date: 18 }, | ||
{ date: 19 }, | ||
{ date: 20 }, | ||
{ date: 21 }, | ||
{ date: 22 }, | ||
{ date: 23 }, | ||
{ date: 24 }, | ||
{ date: 25 }, | ||
{ date: 26 }, | ||
{ date: 27 }, | ||
{ date: 28 }, | ||
{ date: 29 }, | ||
{ date: 30 }, | ||
{ date: 31 }, | ||
{ date: 1, next: true }, | ||
{ date: 2, next: true }, | ||
{ date: 3, next: true }, | ||
{ date: 4, next: true }, | ||
{ date: 5, next: true }, | ||
{ date: 6, next: true }, | ||
{ date: 7, next: true }, | ||
{ date: 8, next: true }, | ||
{ date: 9, next: true }, | ||
{ date: 10, next: true } ] } | ||
meta: { | ||
date: 'Tue Mar 01 2016 00:00:00 GMT+0100 (CET)', | ||
lastDay: 31, | ||
lastWeekDay: 4, | ||
startDay: 1 | ||
}, | ||
list: [ | ||
{ date: 29, previous: true }, | ||
{ date: 1 }, | ||
{ date: 2 }, | ||
{ date: 3 }, | ||
{ date: 4 }, | ||
{ date: 5 }, | ||
{ date: 6 }, | ||
{ date: 7 }, | ||
{ date: 8 }, | ||
{ date: 9 }, | ||
{ date: 10 }, | ||
{ date: 11 }, | ||
{ date: 12 }, | ||
{ date: 13 }, | ||
{ date: 14 }, | ||
{ date: 15 }, | ||
{ date: 16 }, | ||
{ date: 17 }, | ||
{ date: 18 }, | ||
{ date: 19 }, | ||
{ date: 20 }, | ||
{ date: 21 }, | ||
{ date: 22 }, | ||
{ date: 23 }, | ||
{ date: 24 }, | ||
{ date: 25 }, | ||
{ date: 26 }, | ||
{ date: 27 }, | ||
{ date: 28 }, | ||
{ date: 29 }, | ||
{ date: 30 }, | ||
{ date: 31 }, | ||
{ date: 1, next: true }, | ||
{ date: 2, next: true }, | ||
{ date: 3, next: true }, | ||
{ date: 4, next: true }, | ||
{ date: 5, next: true }, | ||
{ date: 6, next: true }, | ||
{ date: 7, next: true }, | ||
{ date: 8, next: true }, | ||
{ date: 9, next: true }, | ||
{ date: 10, next: true } | ||
] | ||
} | ||
``` |
var Month = require('./month'); | ||
var Month = require('./lib/month'); | ||
@@ -4,0 +4,0 @@ Month.config({ startDay: 1 }); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5959
9
130
80
1