Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3ed810a
initial package.json and rollup updates, changes tsconfig to bundler …
EvanReinstein Sep 19, 2025
95e13e2
upgrade react-paypal-js typescript package to v5.3.3
EvanReinstein Sep 22, 2025
4c1fa0a
update tsconfig for v6 namespace
EvanReinstein Sep 22, 2025
b1cae8b
chore: add changeset
EvanReinstein Sep 22, 2025
379822a
align rollup version and update playwright yml
EvanReinstein Sep 22, 2025
71ec622
change playwright.yml download deps command
EvanReinstein Sep 22, 2025
dc0d70c
update actions checkout and setup-node to v4
EvanReinstein Sep 22, 2025
801521d
update .nvmrc
EvanReinstein Sep 22, 2025
ec27dad
try different method for installing dependencies
EvanReinstein Sep 22, 2025
b06bb0c
fix package dependency issues related to rollup and terser
EvanReinstein Sep 22, 2025
9195c0a
revert change to download deps step
EvanReinstein Sep 22, 2025
aa31df6
update package-lock
EvanReinstein Sep 22, 2025
90374d9
test fix for rollup option deps bug
EvanReinstein Sep 22, 2025
186a270
update build script
EvanReinstein Sep 22, 2025
7974cae
test adding cache to setup node action, update install command, and r…
EvanReinstein Sep 22, 2025
dd40e02
re-add force rollup install in github workflows
EvanReinstein Sep 22, 2025
0267e7f
Merge branch 'main' into feature/initial-updates-ts-upgrade
EvanReinstein Sep 23, 2025
dfcb381
run npm install to update package-lock with new package versions from…
EvanReinstein Sep 23, 2025
9fa8172
revert changes to download deps and setup node steps in github workflows
EvanReinstein Sep 23, 2025
88a968f
install with update to package.json
EvanReinstein Sep 23, 2025
2aee636
leverage fresh package-lock and remove all artifactory package resolu…
EvanReinstein Sep 23, 2025
b942337
fix check annotations warnings
EvanReinstein Sep 23, 2025
67ab7c9
add new line at the end of gitignore
EvanReinstein Sep 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/calm-dodos-win.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@paypal/react-paypal-js": minor
"@paypal/paypal-js": minor
---

Upgrade react-paypal-js Typescript version to v5.3.3 and update build configuration.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.sha}}
fetch-depth: 0
Expand All @@ -18,7 +18,7 @@ jobs:
run: echo NVMRC=`cat .nvmrc` >> $GITHUB_ENV

- name: ⎔ Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ env.NVMRC }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
access_token: ${{ secrets.GITHUB_TOKEN }}

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: 🤝 Set Node version from .nvmrc
run: echo NVMRC=`cat .nvmrc` >> $GITHUB_ENV

- name: ⎔ Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ env.NVMRC }}

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ node_modules
/playwright-report/
/playwright/.cache/
.idea
.rollup.cache
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
Loading
Loading