velocityjs
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -0,1 +1,5 @@ | ||
## 2.0.1 2020-09-02 | ||
- fix Bug with #set inside #foreach [129](https://github.com/shepherdwind/velocity.js/issues/129) | ||
## 2.0.0 2019-09-26 | ||
@@ -2,0 +6,0 @@ |
{ | ||
"name": "velocityjs", | ||
"description": "Velocity Template Language(VTL) for JavaScript", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"license": "MIT", | ||
@@ -34,3 +34,3 @@ "keywords": [ | ||
"scripts": { | ||
"test": "mocha tests --require should", | ||
"test": "mocha test --require should", | ||
"pub": "npm version patch && npm publish && git push origin master && git push origin --tag" | ||
@@ -37,0 +37,0 @@ }, |
@@ -28,3 +28,4 @@ module.exports = function(Velocity, utils) { | ||
context = this.context; | ||
} else { | ||
// fix #129 | ||
} else if (!context.hasOwnProperty(ref.id)) { | ||
// set var to global context, see #100 | ||
@@ -31,0 +32,0 @@ context = this.context; |
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
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
176431
42
3711