-
Notifications
You must be signed in to change notification settings - Fork 22
[BANK-5350] Upgrade Nuxt and Node for Sample App #405
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
timmy-circle
merged 29 commits into
circlefin:master
from
anilgangapersaud-circle:update-node
Sep 2, 2025
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
3ab1ce1
remove cards functionality
anilgangapersaud-circle 496c13e
working upgrade
anilgangapersaud-circle ff94b1e
run prettier
anilgangapersaud-circle ae67da6
cleanup store, update github workflow to use node 22
anilgangapersaud-circle ae9d3e5
remove beta from address book routes
anilgangapersaud-circle e4564f8
ESLint
anilgangapersaud-circle f30abf7
update devtools eslint
anilgangapersaud-circle 6794131
fix jest test config
anilgangapersaud-circle 86e114f
run prettier
anilgangapersaud-circle 46652d1
Merge branch 'master' into update-node
anilgangapersaud-circle 5f3a18c
fix tests
anilgangapersaud-circle 0f6694a
rm test from workflow
anilgangapersaud-circle fedd46d
update node v
anilgangapersaud-circle 17befb3
remove openpgp
anilgangapersaud-circle 6e92846
more regression testing
anilgangapersaud-circle 4b81703
small cleanup
anilgangapersaud-circle 944cb8f
update supported payout currencies
anilgangapersaud-circle 628a47c
rm unused dependencies
anilgangapersaud-circle 9addda5
add lodash back
anilgangapersaud-circle aa4c409
add back ethers
anilgangapersaud-circle ff59384
fix vulnerabilties
anilgangapersaud-circle 8867b81
uncommit package lock
anilgangapersaud-circle 2665b8e
update license
anilgangapersaud-circle 2255a6b
remove wallet connect
anilgangapersaud-circle 1c29249
fix build
anilgangapersaud-circle 3f29242
update license
anilgangapersaud-circle c7adb1f
add
ali-kafel b8beea7
test pr scan
ali-kafel 133cf3b
add ignore licenses
ali-kafel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,18 @@ | ||
pkg:npm/elliptic@6.6.1 | ||
pkg:npm/@bufbuild/protobuf@2.7.0 | ||
pkg:npm/@pkgjs/parseargs@0.11.0 | ||
pkg:npm/abbrev@3.0.1 | ||
pkg:npm/confbox@0.1.8 | ||
pkg:npm/confbox@0.2.2 | ||
pkg:npm/giget@2.0.0 | ||
pkg:npm/postcss-reduce-initial@7.0.4 | ||
pkg:npm/postcss-values-parser@6.0.2 | ||
pkg:npm/rollup@4.48.1 | ||
pkg:npm/sass@1.91.0 | ||
pkg:npm/sax@1.4.1 | ||
pkg:npm/type-fest@4.41.0 | ||
pkg:npm/uglify-js@3.19.3 | ||
pkg:npm/unenv@2.0.0-rc.19 | ||
pkg:npm/vite@5.4.19 | ||
pkg:npm/vite@7.1.3 | ||
pkg:npm/vitest@1.6.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
16.13.0 | ||
22.18.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* Main CSS file for Circle Sample App */ | ||
|
||
/* Reset and base styles */ | ||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
html, | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
|
||
/* Layout styles */ | ||
.v-application { | ||
font-family: 'Roboto', sans-serif !important; | ||
} | ||
|
||
/* Navigation styles */ | ||
.v-navigation-drawer { | ||
border-right: 1px solid rgba(0, 0, 0, 0.12); | ||
} | ||
|
||
/* Card and content styles */ | ||
.v-card { | ||
border-radius: 8px; | ||
} | ||
|
||
/* Form styles */ | ||
.v-text-field { | ||
margin-bottom: 16px; | ||
} | ||
|
||
/* Button styles */ | ||
.v-btn { | ||
text-transform: none; | ||
} | ||
|
||
/* Utility classes */ | ||
.text-center { | ||
text-align: center; | ||
} | ||
|
||
.mt-4 { | ||
margin-top: 16px; | ||
} | ||
|
||
.mb-4 { | ||
margin-bottom: 16px; | ||
} | ||
|
||
.pa-4 { | ||
padding: 16px; | ||
} | ||
|
||
/* Custom application styles */ | ||
.headline { | ||
font-size: 1.5rem; | ||
font-weight: 400; | ||
line-height: 2rem; | ||
} | ||
|
||
.subtitle-2 { | ||
font-size: 0.875rem; | ||
font-weight: 500; | ||
line-height: 1.375rem; | ||
} | ||
|
||
/* Error and success states */ | ||
.error-text { | ||
color: #f44336; | ||
} | ||
|
||
.success-text { | ||
color: #4caf50; | ||
} | ||
|
||
/* Loading states */ | ||
.loading-overlay { | ||
position: relative; | ||
} | ||
|
||
/* Responsive design */ | ||
@media (max-width: 768px) { | ||
.v-navigation-drawer { | ||
position: fixed !important; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module.exports = { | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
targets: { | ||
node: 'current', | ||
}, | ||
}, | ||
], | ||
], | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed a bunch of Card related code now that it's deprecated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you see anything I missed, please comment