Skip to content

Commit

Permalink
Bump to v0.2.0 (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
pierremtb committed May 18, 2023
1 parent e943057 commit 7d07b62
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
14 changes: 10 additions & 4 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "KittyCAD Diff Viewer",
"description": "KittyCAD Diff Viewer Chrome Extension",
"version": "0.1.5",
"version": "0.2.0",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
Expand All @@ -12,7 +12,9 @@
"48": "logo192.png",
"128": "logo192.png"
},
"permissions": ["storage"],
"permissions": [
"storage"
],
"host_permissions": [
"https://github.com/",
"https://api.github.com/",
Expand All @@ -21,8 +23,12 @@
],
"content_scripts": [
{
"matches": ["https://github.com/*"],
"js": ["src/chrome/content.ts"],
"matches": [
"https://github.com/*"
],
"js": [
"src/chrome/content.ts"
],
"all_frames": false,
"run_at": "document_end"
}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "diff-viewer-extension",
"version": "0.1.5",
"version": "0.2.0",
"private": true,
"dependencies": {
"@dicebear/avatars": "^4.10.8",
Expand Down Expand Up @@ -40,7 +40,7 @@
"build": "vite build",
"test": "vitest",
"e2e": "yarn build && yarn playwright test",
"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"
"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"
},
"eslintConfig": {
"extends": [
Expand Down

0 comments on commit 7d07b62

Please sign in to comment.