@kayako/apps-manifest
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -0,1 +1,11 @@ | ||
<a name="1.0.2"></a> | ||
## [1.0.2](https://github.com/kayako/apps-manifest/compare/v1.0.1...v1.0.2) (2018-02-12) | ||
### Bug Fixes | ||
* **validations:** consider fields optional for validation rules ([a06a3f4](https://github.com/kayako/apps-manifest/commit/a06a3f4)) | ||
<a name="1.0.1"></a> | ||
@@ -2,0 +12,0 @@ ## [1.0.1](https://github.com/kayako/apps-manifest/compare/v1.0.0...v1.0.1) (2018-02-12) |
{ | ||
"name": "@kayako/apps-manifest", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Parser and validator for apps manifest.json file", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -32,3 +32,3 @@ 'use strict' | ||
const fieldValue = get(data, field) | ||
if (field === null || field === undefined) { | ||
if (fieldValue === null || fieldValue === undefined) { | ||
return | ||
@@ -58,3 +58,3 @@ } | ||
const fieldValue = get(data, field) | ||
if (field === null || field === undefined) { | ||
if (fieldValue === null || fieldValue === undefined) { | ||
return | ||
@@ -61,0 +61,0 @@ } |
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
34166