Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit 0760cf4

Browse files
fix(deps): update dependency ajv to v8.12.0 (#297)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Lautzenheiser <[email protected]>
1 parent f815b5c commit 0760cf4

File tree

8 files changed

+24
-19
lines changed

8 files changed

+24
-19
lines changed

Diff for: .eslintignore

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ node_modules
22
dist
33
dev-test
44
*.js
5-
j-toml.min.d.ts

Diff for: .vscode/tasks.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "dev",
7+
"problemMatcher": [],
8+
"label": "npm: dev",
9+
"detail": "lerna run dev --scope=@staticcms/core",
10+
"group": {
11+
"kind": "build",
12+
"isDefault": true
13+
}
14+
}
15+
]
16+
}

Diff for: packages/core/.eslintignore

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ node_modules
22
dist
33
dev-test
44
*.js
5-
j-toml.min.d.ts

Diff for: packages/core/.prettierignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
dist/
22
bin/
33
public/
4-
.cache/
4+
.cache/
5+
j-toml.js

Diff for: packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"@udecode/plate-serializer-md": "18.13.0",
8282
"@uiw/codemirror-extensions-langs": "4.19.5",
8383
"@uiw/react-codemirror": "4.19.5",
84-
"ajv": "8.11.2",
84+
"ajv": "8.12.0",
8585
"ajv-errors": "3.0.0",
8686
"ajv-keywords": "5.1.0",
8787
"array-move": "4.0.0",

Diff for: packages/core/test/setupEnv.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ if (typeof window === 'undefined') {
1515

1616
global.URL.createObjectURL = jest.fn();
1717

18-
jest.mock('../src/formats/util/j-toml.min');
18+
jest.mock('../src/formats/util/j-toml');

Diff for: yarn.lock

+4-14
Original file line numberDiff line numberDiff line change
@@ -5119,10 +5119,10 @@ ajv-keywords@^3.5.2:
51195119
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
51205120
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
51215121

5122-
ajv@8.11.2:
5123-
version "8.11.2"
5124-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.2.tgz#aecb20b50607acf2569b6382167b65a96008bb78"
5125-
integrity sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==
5122+
ajv@8.12.0, ajv@^8.0.0, ajv@^8.6.0, ajv@^8.8.0:
5123+
version "8.12.0"
5124+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1"
5125+
integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==
51265126
dependencies:
51275127
fast-deep-equal "^3.1.1"
51285128
json-schema-traverse "^1.0.0"
@@ -5139,16 +5139,6 @@ ajv@^6.10.0, ajv@^6.12.4, ajv@^6.12.5:
51395139
json-schema-traverse "^0.4.1"
51405140
uri-js "^4.2.2"
51415141

5142-
ajv@^8.0.0, ajv@^8.6.0, ajv@^8.8.0:
5143-
version "8.12.0"
5144-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1"
5145-
integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==
5146-
dependencies:
5147-
fast-deep-equal "^3.1.1"
5148-
json-schema-traverse "^1.0.0"
5149-
require-from-string "^2.0.2"
5150-
uri-js "^4.2.2"
5151-
51525142
ansi-colors@^4.1.1:
51535143
version "4.1.3"
51545144
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b"

0 commit comments

Comments
 (0)