Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@kayako/apps-manifest

Package Overview
Dependencies
Maintainers
6
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kayako/apps-manifest - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

10

CHANGELOG.md

@@ -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)

2

package.json
{
"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 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc