Skip to content

Commit d8f6545

Browse files
v3.0.3 (#15)
* update jsdiffpatch from 0.4.1 to 0.5.0 --------- Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 45130df commit d8f6545

8 files changed

+363
-272
lines changed

.vscode/settings.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
{
2-
"json.schemaDownload.enable": true
2+
"json.schemaDownload.enable": true,
3+
"editor.formatOnSave": true,
4+
"json.schemas": [
5+
{
6+
"fileMatch": ["manifest.json"],
7+
"url": "https://json.schemastore.org/chrome-manifest.json"
8+
}
9+
]
310
}

bundle/js/jsdiff-panel.js

+17-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "console.diff(...)",
4-
"version": "3.0.2",
4+
"version": "3.0.3",
55
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlCx2Bl0li+3idvfrH9cQL/MzphafGFqMUA2P+0vbyhwxsxWl0llOaGQbkirX5qCoAVHoUCPqu3hCjpVCv35igPbfqDs5bdLZZmXt2F0HjEQnWI/eZKd9IKcKYMplEeL2BodmpU02VrP1UnUzQHZeeMWk9ybgWOqCimkwliILVubRj5dxNB9AidLwO4Z5iGq/OvW9AJMYdxKxrLP2lF6/GGNcCBg+iCJZwlQOhFB9LbUjytT4ws3bIEX4b5zmWLqGKR1NiZfGug2eCWXt9oEKg2WkbXmBBzFKqxnM/bBUrVR29N9qNgx0f42qnyhsW3Bo4kPzE3d0asXCV5nofLTLEwIDAQAB",
66
"description": "Compare objects in memory with console.diff(old, new) devtools function",
77
"minimum_chrome_version": "100.0",

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsdiff",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"description": "Chrome extension to compare objects in memory with console.diff(old, new) devtools function",
55
"private": true,
66
"scripts": {
@@ -23,24 +23,24 @@
2323
"homepage": "https://github.com/zendive/jsdiff#readme",
2424
"type": "module",
2525
"devDependencies": {
26-
"@types/chrome": "0.0.243",
26+
"@types/chrome": "0.0.245",
2727
"@types/webpack-bundle-analyzer": "4.6.0",
2828
"@vue/compiler-sfc": "3.3.4",
2929
"clean-webpack-plugin": "4.0.0",
3030
"css-loader": "6.8.1",
3131
"esbuild": "0.19.2",
32-
"esbuild-loader": "4.0.0",
33-
"jsondiffpatch": "0.4.1",
34-
"prettier": "3.0.1",
35-
"sass": "1.65.1",
32+
"esbuild-loader": "4.0.2",
33+
"jsondiffpatch": "0.5.0",
34+
"prettier": "3.0.3",
35+
"sass": "1.66.1",
3636
"sass-loader": "13.3.2",
3737
"style-loader": "3.3.3",
3838
"ts-node": "10.9.1",
39-
"typescript": "5.1.6",
39+
"typescript": "5.2.2",
4040
"vue": "3.3.4",
4141
"vue-loader": "17.2.2",
4242
"webpack": "5.88.2",
43-
"webpack-bundle-analyzer": "4.9.0",
43+
"webpack-bundle-analyzer": "4.9.1",
4444
"webpack-cli": "5.1.4"
4545
}
4646
}

0 commit comments

Comments
 (0)