Skip to content

Commit ce95e30

Browse files
committed
use esbuild in terser
1 parent 4f0c27d commit ce95e30

File tree

9 files changed

+306
-36
lines changed

9 files changed

+306
-36
lines changed

bundle/js/jsdiff-console.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundle/js/jsdiff-devtools.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundle/js/jsdiff-panel.js

Lines changed: 29 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundle/js/jsdiff-proxy.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifest.json

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
{
2+
"manifest_version": 3,
23
"name": "console.diff(...)",
4+
"version": "3.0.2",
5+
"~~key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlCx2Bl0li+3idvfrH9cQL/MzphafGFqMUA2P+0vbyhwxsxWl0llOaGQbkirX5qCoAVHoUCPqu3hCjpVCv35igPbfqDs5bdLZZmXt2F0HjEQnWI/eZKd9IKcKYMplEeL2BodmpU02VrP1UnUzQHZeeMWk9ybgWOqCimkwliILVubRj5dxNB9AidLwO4Z5iGq/OvW9AJMYdxKxrLP2lF6/GGNcCBg+iCJZwlQOhFB9LbUjytT4ws3bIEX4b5zmWLqGKR1NiZfGug2eCWXt9oEKg2WkbXmBBzFKqxnM/bBUrVR29N9qNgx0f42qnyhsW3Bo4kPzE3d0asXCV5nofLTLEwIDAQAB",
36
"description": "Compare objects in memory with console.diff(old, new) devtools function",
4-
"version": "3.0.1",
5-
"manifest_version": 3,
6-
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlCx2Bl0li+3idvfrH9cQL/MzphafGFqMUA2P+0vbyhwxsxWl0llOaGQbkirX5qCoAVHoUCPqu3hCjpVCv35igPbfqDs5bdLZZmXt2F0HjEQnWI/eZKd9IKcKYMplEeL2BodmpU02VrP1UnUzQHZeeMWk9ybgWOqCimkwliILVubRj5dxNB9AidLwO4Z5iGq/OvW9AJMYdxKxrLP2lF6/GGNcCBg+iCJZwlQOhFB9LbUjytT4ws3bIEX4b5zmWLqGKR1NiZfGug2eCWXt9oEKg2WkbXmBBzFKqxnM/bBUrVR29N9qNgx0f42qnyhsW3Bo4kPzE3d0asXCV5nofLTLEwIDAQAB",
77
"minimum_chrome_version": "100.0",
8+
"homepage_url": "https://github.com/zendive/jsdiff",
9+
"author": "[email protected]",
10+
"permissions": ["storage"],
11+
"host_permissions": ["*://*/*"],
812
"devtools_page": "bundle/jsdiff-devtools.html",
13+
"icons": {
14+
"28": "bundle/img/panel-icon28.png",
15+
"64": "bundle/img/panel-icon64.png",
16+
"128": "bundle/img/panel-icon128.png"
17+
},
918
"content_scripts": [
1019
{
1120
"world": "MAIN",
@@ -22,12 +31,5 @@
2231
"all_frames": true,
2332
"run_at": "document_start"
2433
}
25-
],
26-
"icons": {
27-
"28": "bundle/img/panel-icon28.png",
28-
"64": "bundle/img/panel-icon64.png",
29-
"128": "bundle/img/panel-icon128.png"
30-
},
31-
"permissions": ["storage"],
32-
"host_permissions": ["*://*/*"]
34+
]
3335
}

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"test": "echo \"no test\" && exit 1",
88
"dev": "NODE_OPTIONS=\"--loader=ts-node/esm\" webpack --progress --watch --mode=development",
99
"prod": "NODE_OPTIONS=\"--loader=ts-node/esm --no-warnings\" NODE_ENV=production webpack --mode=production",
10+
"lint": "tsc -noEmit",
1011
"format": "prettier . --write",
1112
"zip": "./scripts/package.sh"
1213
},
@@ -32,6 +33,7 @@
3233
"@vue/compiler-sfc": "3.3.4",
3334
"clean-webpack-plugin": "4.0.0",
3435
"css-loader": "6.8.1",
36+
"esbuild": "^0.18.17",
3537
"jsondiffpatch": "0.4.1",
3638
"prettier": "3.0.0",
3739
"sass": "1.64.1",

0 commit comments

Comments
 (0)