Bump to v0.2.0 (#166)

This commit is contained in:
Pierre Jacquier
2023-05-18 13:23:24 -04:00
committed by GitHub
parent e943057b73
commit 7d07b626ee
2 changed files with 12 additions and 6 deletions

View File

@ -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",
@ -12,7 +12,9 @@
"48": "logo192.png",
"128": "logo192.png"
},
"permissions": ["storage"],
"permissions": [
"storage"
],
"host_permissions": [
"https://github.com/",
"https://api.github.com/",
@ -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"
}

View File

@ -1,6 +1,6 @@
{
"name": "diff-viewer-extension",
"version": "0.1.5",
"version": "0.2.0",
"private": true,
"dependencies": {
"@dicebear/avatars": "^4.10.8",
@ -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": [