-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: create the gift app PE-5161 #3
Conversation
d340947
to
ddb12e5
Compare
72e299c
to
f54b86d
Compare
- name: Build | ||
run: yarn build | ||
|
||
- name: Deploy gh-pages if on prod |
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.
fwiw I learned we can add dev dependency gh-pages
and add a deploy command like yarn gh-pages
(but this is working and fine)
feat: add a redeem page PE-5162
8494951
to
ec02b7b
Compare
de6672b
to
13e5a6b
Compare
@@ -3,6 +3,7 @@ | |||
"version": "1.0.0", | |||
"type": "module", |
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.
consider using nodenext
in the tsconfig
feat: receieve query params in gift url PE-5161
@@ -14,12 +15,14 @@ | |||
"build": "tsc && vite build", | |||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | |||
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"", | |||
"preview": "vite preview" | |||
"preview": "vite preview", | |||
"test": "echo \"TODO: add tests\" && exit 0" | |||
}, | |||
"dependencies": { | |||
"@ardrive/turbo-sdk": "^1.1.0", |
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.
can you test v1.1.1-alpha-1 and see if it removes the need for vite polyfill plugin below?
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.
#7 -- It did not seem to fix the problem there
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.
all good - will continue validating on that branch
The base branch was changed.
No description provided.