immutable-ics
Advanced tools
Comparing version 0.2.5 to 0.3.0
{ | ||
"name": "immutable-ics", | ||
"version": "0.2.5", | ||
"version": "0.3.0", | ||
"description": "Immutable iCalendar document creation", | ||
@@ -30,3 +30,2 @@ "main": "build/immutable-ics.js", | ||
"dependencies": { | ||
"lodash.isarray": "^4.0.0", | ||
"lodash.isfunction": "^3.0.8", | ||
@@ -43,3 +42,3 @@ "lodash.isnull": "^3.0.0", | ||
"babel-preset-stage-0": "^6.5.0", | ||
"mocha": "^2.5.3", | ||
"mocha": "^3.5.0", | ||
"standard": "^7.1.2", | ||
@@ -46,0 +45,0 @@ "webpack": "^1.13.1" |
@@ -50,8 +50,8 @@ # immutable-ics | ||
calendar = new Component({ name: 'VCALENDAR' }) | ||
calendar = calendar.addProperty(versionProperty) | ||
calendar = calendar.pushProperty(versionProperty) | ||
event = new Component({ name: 'VEVENT' }) | ||
event = event.addProperty(dtstartProperty) | ||
event = event.pushProperty(dtstartProperty) | ||
calendar = calendar.addComponent(event) | ||
calendar = calendar.pushComponent(event) | ||
``` | ||
@@ -58,0 +58,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
2040862
4
13
22858
- Removedlodash.isarray@^4.0.0
- Removedlodash.isarray@4.0.0(transitive)