@travetto/schema 2.2.1 → 2.2.4

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 +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -185,7 +185,7 @@ export async function validate(): Promise<void> {
185
185
 
186
186
  const person = Person.from({
187
187
  name: 'Test',
188
- // @ts-ignore
188
+ // @ts-expect-error
189
189
  age: 'abc',
190
190
  address: {
191
191
  street1: '1234 Fun'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@travetto/schema",
3
3
  "displayName": "Schema",
4
- "version": "2.2.1",
4
+ "version": "2.2.4",
5
5
  "description": "Data type registry for runtime validation, reflection and binding. ",
6
6
  "keywords": [
7
7
  "schema",
@@ -29,8 +29,8 @@
29
29
  "directory": "module/schema"
30
30
  },
31
31
  "dependencies": {
32
- "@travetto/registry": "^2.2.1",
33
- "@travetto/transformer": "^2.2.1"
32
+ "@travetto/registry": "^2.2.4",
33
+ "@travetto/transformer": "^2.2.4"
34
34
  },
35
35
  "optionalPeerDependencies": {
36
36
  "@types/faker": "^5.5.9",