Skip to content

Commit 6fa041b

Browse files
committed
release: v0.0.2
1 parent f09b73c commit 6fa041b

File tree

4 files changed

+381
-3
lines changed

4 files changed

+381
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## [0.0.2](https://github.com/Jevin0/css-diff-devtools/compare/v0.0.1...v0.0.2) (2024-12-23)
2+
3+
4+
### Features
5+
6+
* support click copy css ([76cb5f2](https://github.com/Jevin0/css-diff-devtools/commit/76cb5f26b202de28ce8d86fd86b382360363a5aa))
7+
* support window/tab teleport data ([#3](https://github.com/Jevin0/css-diff-devtools/issues/3)) ([f09b73c](https://github.com/Jevin0/css-diff-devtools/commit/f09b73ceb972cc27ab4cb32a4690487c0e6453ba))
8+
9+
10+
11+
## [0.0.1](https://github.com/Jevin0/css-diff-devtools/compare/09101646dcb4a67d68ff7eb4ccc257a835112312...v0.0.1) (2024-12-19)
12+
13+
14+
### Features
15+
16+
* init ([0910164](https://github.com/Jevin0/css-diff-devtools/commit/09101646dcb4a67d68ff7eb4ccc257a835112312))
17+
18+
19+

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ A browser extension that compares different CSS.
44

55
![Screenshot](https://github.com/Jevin0/css-diff-devtools/blob/main/img/screenshot.png?raw=true)
66

7+
# Support
8+
9+
- Supports comparison of selected elements between different windows/tabs
10+
- Click on different styles to automatically copy
11+
712
# Usage
813

914
> [!WARNING]
@@ -14,7 +19,6 @@ You need to download the zip file from my release and manually drag it into your
1419
## Specific operations
1520

1621
- Select two elements in the Elements tab of the DevTools panel.
17-
- Click on different styles to automatically copy
1822

1923
# Inspiration
2024

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "css-diff-devtools",
33
"type": "module",
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"private": true,
66
"packageManager": "pnpm@9.14.1",
77
"description": "A browser extension that compares different CSS",
@@ -18,7 +18,8 @@
1818
"zip:firefox": "wxt zip -b firefox --mv3",
1919
"zip:edge": "wxt zip -b edge",
2020
"compile": "vue-tsc --noEmit",
21-
"postinstall": "wxt prepare"
21+
"postinstall": "wxt prepare",
22+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
2223
},
2324
"dependencies": {
2425
"element-plus": "^2.9.1",
@@ -31,6 +32,7 @@
3132
"@vueuse/core": "^12.0.0",
3233
"@wxt-dev/module-vue": "^1.0.1",
3334
"autoprefixer": "^10.4.20",
35+
"conventional-changelog-cli": "^5.0.0",
3436
"eslint": "^9.17.0",
3537
"postcss": "^8.4.49",
3638
"tailwindcss": "^3.4.17",

0 commit comments

Comments
 (0)