Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency ajv to v7 #636

Merged
merged 11 commits into from
Mar 5, 2021
4 changes: 2 additions & 2 deletions packages/plugin-manifest-validator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ console.log(result.valid); // true or false
console.log(result.errors); // array of ajv error objects
```

[ajv error objects](https://github.com/epoberezkin/ajv#validation-errors) is like:
[ajv error objects](https://ajv.js.org/docs/api.html#validation-errors) is like:

```js
{
dataPath: '.version',
dataPath: '/version',
keyword: 'type',
message: 'should be integer',
params: {
Expand Down
Loading