Skip to content

Commit 7d07b62

Browse files
authored
Bump to v0.2.0 (#166)
1 parent e943057 commit 7d07b62

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

manifest.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "KittyCAD Diff Viewer",
33
"description": "KittyCAD Diff Viewer Chrome Extension",
4-
"version": "0.1.5",
4+
"version": "0.2.0",
55
"manifest_version": 3,
66
"action": {
77
"default_popup": "index.html",
@@ -12,7 +12,9 @@
1212
"48": "logo192.png",
1313
"128": "logo192.png"
1414
},
15-
"permissions": ["storage"],
15+
"permissions": [
16+
"storage"
17+
],
1618
"host_permissions": [
1719
"https://github.com/",
1820
"https://api.github.com/",
@@ -21,8 +23,12 @@
2123
],
2224
"content_scripts": [
2325
{
24-
"matches": ["https://github.com/*"],
25-
"js": ["src/chrome/content.ts"],
26+
"matches": [
27+
"https://github.com/*"
28+
],
29+
"js": [
30+
"src/chrome/content.ts"
31+
],
2632
"all_frames": false,
2733
"run_at": "document_end"
2834
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "diff-viewer-extension",
3-
"version": "0.1.5",
3+
"version": "0.2.0",
44
"private": true,
55
"dependencies": {
66
"@dicebear/avatars": "^4.10.8",
@@ -40,7 +40,7 @@
4040
"build": "vite build",
4141
"test": "vitest",
4242
"e2e": "yarn build && yarn playwright test",
43-
"bump": "echo \"$(jq --arg v \"$VERSION\" '.version=$v' package.json --indent 4)\" > package.json && echo \"$(jq --arg v \"$VERSION\" '.version=$v' public/manifest.json --indent 4)\" > public/manifest.json"
43+
"bump": "echo \"$(jq --arg v \"$VERSION\" '.version=$v' package.json --indent 4)\" > package.json && echo \"$(jq --arg v \"$VERSION\" '.version=$v' manifest.json --indent 4)\" > manifest.json"
4444
},
4545
"eslintConfig": {
4646
"extends": [

0 commit comments

Comments
 (0)