Skip to content

Commit a10998b

Browse files
author
Michael
committed
new releas for reinstated es5 compatibility
1 parent e64853a commit a10998b

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -340,17 +340,18 @@ The expected output.
340340
Enjoy!
341341

342342
## Changelog
343-
1.0.15 Add support for a context object that is passed through to the operate.run and each functions.
344-
1.0.14 Add support for default values via "defaults" definition. Add support for removing attributes via the "remove" definition.
345-
1.0.13 Update code examples.
346-
1.0.12 Fixed readme formatting.
347-
1.0.11 Adding support for next object and nested array references.
348-
1.0.10 Make each compatible with other options.
349-
1.0.9 Updated the changelog.
350-
1.0.8 Added each functionality to the map.
351-
1.0.7 Updated Readme for multiple operations.
352-
1.0.6 Accepted pull request form ooskapenaar. You can now use custom functions as operators.
353-
1.0.5 Accepted pull request from jaymedavis. You can now pass an array directly and leave 'list' undefined.
343+
1.0.16 ES5 compatibility
344+
1.0.15 Add support for a context object that is passed through to the operate.run and each functions.
345+
1.0.14 Add support for default values via "defaults" definition. Add support for removing attributes via the "remove" definition.
346+
1.0.13 Update code examples.
347+
1.0.12 Fixed readme formatting.
348+
1.0.11 Adding support for next object and nested array references.
349+
1.0.10 Make each compatible with other options.
350+
1.0.9 Updated the changelog.
351+
1.0.8 Added each functionality to the map.
352+
1.0.7 Updated Readme for multiple operations.
353+
1.0.6 Accepted pull request form ooskapenaar. You can now use custom functions as operators.
354+
1.0.5 Accepted pull request from jaymedavis. You can now pass an array directly and leave 'list' undefined.
354355
1.0.4 Added the ability to group fields into arrays
355356
1.0.3 Added the ability to clear and set field by passing an empty string in the map.
356357

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-json-transform",
3-
"version": "1.0.15",
3+
"version": "1.0.16",
44
"description": "A node module for transforming and performing operations on JSON.",
55
"main": "index.js",
66
"scripts": {
@@ -22,7 +22,7 @@
2222
},
2323
"homepage": "https://github.com/bozzltron/node-json-transform",
2424
"dependencies": {
25-
"lodash": "^4.16.4"
25+
"lodash": "^4.17.4"
2626
},
2727
"devDependencies": {
2828
"deep-freeze": "0.0.1",

test/complexTemplateSpec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var DataTransform = require('../index.js').DataTransform,
2-
_ = require("underscore");
2+
_ = require("lodash");
33

44
var map = {
55
list: 'items',

0 commit comments

Comments
 (0)