yuppi 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,11 +8,11 @@
8
8
  [Function]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
9
9
  [Promise]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
10
10
  [Void]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Undefined
11
+ [YuppiOptionsDefault]: ./src/defaults/YuppiOptions.default.ts
11
12
  [Email]: ./src/patterns/Email.pattern.ts
12
13
  [PhoneNumber]: ./src/patterns/PhoneNumber.pattern.ts
13
14
  [URL]: ./src/patterns/URL.pattern.ts
14
15
  [Username]: ./src/patterns/Username.pattern.ts
15
- [YuppiOptionsDefault]: ./src/defaults/YuppiOptions.default.ts
16
16
  [AnyObject]: https://github.com/jquense/yup/blob/master/src/util/objectTypes.ts#L7
17
17
  [JSONSchema]: https://github.com/sinclairzx81/typebox/blob/master/src/type/object/object.ts#L78
18
18
  [Schema]: ./src/types/Schema.type.ts
@@ -198,7 +198,7 @@ Validate the properties with your Yuppi schema.
198
198
  > };
199
199
  >
200
200
  > try {
201
- > const validation = Yupp.validate(schema, properties)
201
+ > const validation = Yupp.validate(schema, properties);
202
202
  >
203
203
  > console.log(properties);
204
204
  > /*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yuppi",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Schemas that can be converted to Yup and JSON Schema.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/keift/yuppi",