Skip to content

Commit

Permalink
Merge pull request #266 from remix-pwa/pkg-pr
Browse files Browse the repository at this point in the history
Pkg pr
  • Loading branch information
ShafSpecs authored Sep 24, 2024
2 parents cfefe4f + 5c044b1 commit 3004f72
Show file tree
Hide file tree
Showing 10 changed files with 672 additions and 399 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/pkg-pr-new.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish Approved PRs
on:
pull_request_review:
types: [submitted]

jobs:
approved:
if: github.event.review.state == 'APPROVED'
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
cache: npm
node-version: 20

- name: Sync sandbox
run: npm run preinstall -w @remix-pwa/playground

- name: Install dependencies
run: npm clean-install

- name: Publish PR
run: npm run publish:pr
999 changes: 609 additions & 390 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"lint": "turbo lint -- --fix",
"format": "turbo format -- --write",
"postclone": "npm install && npm run test && npm run build",
"publish:pr": "npx pkg-pr-new publish './packages/*'",
"test": "turbo test -- --coverage"
},
"devDependencies": {
Expand All @@ -41,6 +42,7 @@
"husky": "^9.1.1",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"pkg-pr-new": "^0.0.25",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"semver": "^7.6.3",
Expand Down
7 changes: 7 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## @remix-pwa/client 3.0.7 (2024-09-24)


### Bug Fixes

* stop useNetworkConnectivity from causing hydration errors. 9cf2978

## @remix-pwa/client 3.0.7-dev.1 (2024-08-23)


Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-pwa/client",
"version": "3.0.7-dev.1",
"version": "3.0.7",
"description": "A set of utilities for client-side development to enhance the native feel of your Remix App",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/sw/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## @remix-pwa/sw 3.0.10 (2024-09-24)


### Bug Fixes

* **sw:** changed manifest link `rel` from `manifest` to `webmanifest` 942f76a

## @remix-pwa/sw 3.0.10-dev.1 (2024-09-24)


Expand Down
2 changes: 1 addition & 1 deletion packages/sw/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-pwa/sw",
"version": "3.0.10-dev.1",
"version": "3.0.10",
"description": "Service Worker APIs and utilities for Remix PWA",
"repository": {
"type": "git",
Expand Down
10 changes: 10 additions & 0 deletions packages/sync/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## @remix-pwa/sync 3.0.5 (2024-09-24)





### Dependencies

* **@remix-pwa/sw:** upgraded to 3.0.10

## @remix-pwa/sync 3.0.5-dev.1 (2024-09-24)


Expand Down
4 changes: 2 additions & 2 deletions packages/sync/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-pwa/sync",
"version": "3.0.5-dev.1",
"version": "3.0.5",
"description": "A Background Sync addon for Remix PWA",
"repository": {
"type": "git",
Expand Down Expand Up @@ -34,7 +34,7 @@
"rimraf": "^6.0.1"
},
"dependencies": {
"@remix-pwa/sw": "^3.0.10-dev.1",
"@remix-pwa/sw": "^3.0.10",
"idb": "^8.0.0"
}
}
10 changes: 5 additions & 5 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
"build:remix": "remix build"
},
"dependencies": {
"@remix-pwa/client": "3.0.6",
"@remix-pwa/client": "3.0.7",
"@remix-pwa/push": "2.10.3",
"@remix-pwa/sw": "3.0.8",
"@remix-pwa/sync": "3.0.3",
"@remix-pwa/worker-runtime": "2.1.3",
"@remix-pwa/sw": "3.0.10",
"@remix-pwa/sync": "3.0.5",
"@remix-pwa/worker-runtime": "2.1.4",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
Expand All @@ -37,7 +37,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-pwa/dev": "3.0.7",
"@remix-pwa/dev": "3.1.0",
"@remix-run/dev": "^2.8.1",
"@remix-run/eslint-config": "^2.8.1",
"@types/react": "^18.2.22",
Expand Down

0 comments on commit 3004f72

Please sign in to comment.