Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleT committed Jun 11, 2024
1 parent 8aede18 commit 55da4e2
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.2.0",
"version": "0.3.0",
"packages": ["packages/*"]
}
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/example-extension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions packages/example-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "example-extension",
"description": "Example extension that showcases webext-pegasus libraries",
"private": true,
"version": "0.2.0",
"version": "0.3.0",
"type": "module",
"scripts": {
"tsc": "tsc",
Expand All @@ -25,10 +25,10 @@
"postinstall": "wxt prepare"
},
"dependencies": {
"@webext-pegasus/rpc": "^0.2.0",
"@webext-pegasus/store": "^0.2.0",
"@webext-pegasus/store-zustand": "^0.2.0",
"@webext-pegasus/transport": "^0.2.0",
"@webext-pegasus/rpc": "^0.3.0",
"@webext-pegasus/store": "^0.3.0",
"@webext-pegasus/store-zustand": "^0.3.0",
"@webext-pegasus/transport": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.5.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/rpc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webext-pegasus/rpc",
"version": "0.2.0",
"version": "0.3.0",
"description": "RPC Messaging in Web Extensions made easy and type safe. Out of the box.",
"keywords": [
"chrome",
Expand Down Expand Up @@ -52,7 +52,7 @@
},
"homepage": "https://github.com/StyleT/webext-pegasus#readme",
"dependencies": {
"@webext-pegasus/transport": "^0.2.0",
"@webext-pegasus/transport": "^0.3.0",
"type-fest": "^0.21.3"
}
}
4 changes: 2 additions & 2 deletions packages/store-zustand/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webext-pegasus/store-zustand",
"version": "0.2.0",
"version": "0.3.0",
"description": "Zustand adapter to share state between pages and background in web extensions.",
"keywords": [
"chrome",
Expand Down Expand Up @@ -52,7 +52,7 @@
},
"homepage": "https://github.com/StyleT/webext-pegasus#readme",
"dependencies": {
"@webext-pegasus/store": "^0.2.0",
"@webext-pegasus/store": "^0.3.0",
"type-fest": "^0.21.3"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/store/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webext-pegasus/store",
"version": "0.2.0",
"version": "0.3.0",
"description": "A set of utilities for building Redux/Zustand/Mobx/etc applications in Web Extensions.",
"keywords": [
"chrome",
Expand Down Expand Up @@ -52,8 +52,8 @@
},
"homepage": "https://github.com/StyleT/webext-pegasus#readme",
"dependencies": {
"@webext-pegasus/rpc": "^0.2.0",
"@webext-pegasus/transport": "^0.2.0",
"@webext-pegasus/rpc": "^0.3.0",
"@webext-pegasus/transport": "^0.3.0",
"type-fest": "^0.21.3"
}
}
2 changes: 1 addition & 1 deletion packages/transport/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webext-pegasus/transport",
"version": "0.2.0",
"version": "0.3.0",
"description": "Turns surface specific browser APIs into unified transport layer",
"keywords": [
"chrome",
Expand Down

0 comments on commit 55da4e2

Please sign in to comment.