Skip to content

Commit 94cc2a3

Browse files
v3.0.4 (#17)
Update dependencies and patch vulnerabilities in postcss@<8.4.31, semver<7.5.2 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d8f6545 commit 94cc2a3

File tree

7 files changed

+295
-285
lines changed

7 files changed

+295
-285
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ about: Create a report to help us improve
44
title: ''
55
labels: ''
66
assignees: zendive
7-
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...' (e.g. https://jsfiddle.net/, https://codepen.io/)
1616
2. Click on '....'
1717
3. See error
@@ -23,9 +23,10 @@ A clear and concise description of what you expected to happen.
2323
If applicable, add screenshots to help explain your problem.
2424

2525
**Desktop (please complete the following information):**
26-
- OS: [e.g. iOS]
27-
- Browser version [e.g. chrome 100]
28-
- Version [e.g. 3.0.2]
26+
27+
- OS: [e.g. iOS]
28+
- Browser version [e.g. chrome 100]
29+
- Version [e.g. 3.0.2]
2930

3031
**Additional context**
3132
Add any other context about the problem here.

.vscode/extensions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"recommendations": ["esbenp.prettier-vscode"]
2+
"recommendations": ["esbenp.prettier-vscode", "jebbs.plantuml"]
33
}

Makefile

+17-25
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,38 @@
11
ZIP_FILE="extension.zip"
2-
HASH_ALG=sha384
3-
BIN=node_modules/.bin
2+
HASH_ALG="sha384"
43

54
.PHONY:
6-
install all dev prod build format lint clean
5+
install clean all lint dev prod zip
76

87
install:
98
npm i -g pnpm
109
pnpm i
1110

12-
all: build
11+
clean:
12+
rm -rf ./node_modules
13+
rm -rf $(ZIP_FILE)
14+
rm -rf ./bundle/js/
15+
16+
all:
17+
make lint
18+
make prod
19+
make zip
20+
21+
lint:
22+
npx prettier . --write
23+
npx tsc -noEmit
1324

1425
dev:
1526
NODE_OPTIONS="--loader=ts-node/esm" \
16-
$(BIN)/webpack --progress --watch --mode=development
27+
npx webpack --progress --watch --mode=development
1728

1829
prod:
1930
NODE_OPTIONS="--loader=ts-node/esm --no-warnings=ExperimentalWarning" \
2031
NODE_ENV="production" \
21-
$(BIN)/webpack --mode=production
22-
23-
build:
24-
make lint
25-
make prod
26-
make zip
27-
make print_zip_hash
32+
npx webpack --mode=production
2833

2934
zip:
3035
rm -rf $(ZIP_FILE)
3136
zip -r $(ZIP_FILE) ./bundle ./manifest.json > /dev/null
32-
33-
print_zip_hash:
3437
FILE_HASH=$$(openssl dgst -$(HASH_ALG) -binary $(ZIP_FILE) | openssl base64 -A); \
3538
echo "$(ZIP_FILE) $(HASH_ALG):$$FILE_HASH"
36-
37-
format:
38-
$(BIN)/prettier . --write
39-
40-
lint:
41-
$(BIN)/tsc -noEmit
42-
43-
clean:
44-
rm -rf ./node_modules
45-
rm -rf $(ZIP_FILE)
46-
rm -rf ./bundle/js/

bundle/js/jsdiff-panel.js

+16-16
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.3",
4+
"version": "3.0.4",
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

+17-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"name": "jsdiff",
3-
"version": "3.0.3",
3+
"version": "3.0.4",
44
"description": "Chrome extension to compare objects in memory with console.diff(old, new) devtools function",
55
"private": true,
66
"scripts": {
7-
"test": "echo \"no test\" && exit 1"
7+
"dev": "make dev",
8+
"prod": "make all"
89
},
910
"repository": {
1011
"type": "git",
@@ -23,24 +24,30 @@
2324
"homepage": "https://github.com/zendive/jsdiff#readme",
2425
"type": "module",
2526
"devDependencies": {
26-
"@types/chrome": "0.0.245",
27-
"@types/webpack-bundle-analyzer": "4.6.0",
28-
"@vue/compiler-sfc": "3.3.4",
27+
"@types/chrome": "0.0.251",
28+
"@types/webpack-bundle-analyzer": "4.6.3",
29+
"@vue/compiler-sfc": "3.3.8",
2930
"clean-webpack-plugin": "4.0.0",
3031
"css-loader": "6.8.1",
31-
"esbuild": "0.19.2",
32+
"esbuild": "0.19.5",
3233
"esbuild-loader": "4.0.2",
3334
"jsondiffpatch": "0.5.0",
3435
"prettier": "3.0.3",
35-
"sass": "1.66.1",
36+
"sass": "1.69.5",
3637
"sass-loader": "13.3.2",
3738
"style-loader": "3.3.3",
3839
"ts-node": "10.9.1",
3940
"typescript": "5.2.2",
40-
"vue": "3.3.4",
41-
"vue-loader": "17.2.2",
42-
"webpack": "5.88.2",
41+
"vue": "3.3.8",
42+
"vue-loader": "17.3.1",
43+
"webpack": "5.89.0",
4344
"webpack-bundle-analyzer": "4.9.1",
4445
"webpack-cli": "5.1.4"
46+
},
47+
"pnpm": {
48+
"overrides": {
49+
"postcss@<8.4.31": ">=8.4.31",
50+
"semver@>=7.0.0 <7.5.2": ">=7.5.2"
51+
}
4552
}
4653
}

0 commit comments

Comments
 (0)