@cypress/schema-tools
Advanced tools
Comparing version 3.1.2 to 3.1.3
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var ramda_1 = require("ramda"); | ||
var utils_1 = require("../src/utils"); | ||
var utils_1 = require("./utils"); | ||
exports.addProperty = function (options) { | ||
@@ -6,0 +6,0 @@ var newSchema = ramda_1.clone(options.schema); |
{ | ||
"name": "@cypress/schema-tools", | ||
"version": "3.1.2", | ||
"version": "3.1.3", | ||
"description": "Validate, sanitize and document JSON schemas", | ||
@@ -13,2 +13,4 @@ "main": "dist", | ||
"prebuild": "npm run deps && npm run prettier", | ||
"postbuild": "npm run check-transpiled-correctly", | ||
"check-transpiled-correctly": "node .", | ||
"deps": "deps-ok", | ||
@@ -15,0 +17,0 @@ "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";", |
import { clone, equals, reject } from 'ramda' | ||
import { normalizeRequiredProperties } from '../src/utils' | ||
import { JsonPropertyTypes, ObjectSchema } from './objects' | ||
import { normalizeRequiredProperties } from './utils' | ||
@@ -5,0 +5,0 @@ // |
74587