Socket
Socket
Sign inDemoInstall

@zeit/schemas

Package Overview
Dependencies
Maintainers
15
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zeit/schemas - npm Package Compare versions

Comparing version 2.1.1 to 2.2.0

3

deployment/config.js

@@ -130,2 +130,5 @@ const {EnvKeys, EnvObject} = require('./config-env');

type: 'boolean'
},
aliasing: {
type: 'boolean'
}

@@ -132,0 +135,0 @@ },

2

package.json
{
"name": "@zeit/schemas",
"version": "2.1.1",
"version": "2.2.0",
"description": "All schemas used for validation that are shared between our projects",

@@ -5,0 +5,0 @@ "scripts": {

@@ -238,2 +238,11 @@ /* eslint camelcase: 0 */

exports.test_github_aliasing = () => {
const isValid = ajv.validate(deploymentConfigSchema, {
github: {
aliasing: false
}
});
assert.equal(isValid, true);
};
exports.test_github_additional_field = () => {

@@ -240,0 +249,0 @@ const isValid = ajv.validate(deploymentConfigSchema, {

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