-
Notifications
You must be signed in to change notification settings - Fork 36
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: use [email protected] #119
Merged
Changes from 27 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
5bb40dd
fix: npm install works with [email protected]
SgtPooki 0b9e0a4
chore: uninstall react-scripts, install vite
SgtPooki 994525c
chore: jsx files should use .jsx extension
SgtPooki 5ec6090
chore: create vite.config.js and mv index.html
SgtPooki 4486d2f
chore: update index.html for vite
SgtPooki 2c121a4
chore: fix npm start
SgtPooki e5b2886
chore: use import.meta.env instead of process.env
SgtPooki 0e986c9
chore: use VITE env vars
SgtPooki a78458c
fix: runtime errors
SgtPooki 82fd023
fix: global not being defined properly
SgtPooki c1c3f63
fix: Buffer is not defined
SgtPooki 4955d7f
fix: polyfills and aliases
SgtPooki 2a37375
fix: App propTypes for route
SgtPooki 72d08b5
fix: use ipld-explorer-components from remove-js-ipfs branch
SgtPooki 140a91f
fix: unit tests
SgtPooki 93e4246
fix: add e2e and unit tests
SgtPooki f6bb05a
fix: production build works
SgtPooki 68981de
fix: build scripts
SgtPooki cf212c6
Merge branch 'master' into use-vite
SgtPooki 3029941
tmp: add ipld-explorer-components tgz to repo
SgtPooki 22e96f3
chore: use explorer-components tgz from 2254cedb1cbd50a8e8100eaf7a7a4…
SgtPooki faba246
update package-lock.json
SgtPooki 43425d6
chore: update ipld-explorer-components
SgtPooki 0aec90e
fix: use doInitHelia instead of doInitIpfs
SgtPooki d474933
chore: update ipld-explorer-components and vite
SgtPooki fab1a5a
chore: update ipld-explorer-components
SgtPooki 93b2f5b
chore: use [email protected]
SgtPooki c11fa04
fix: use error message on fetch timeout
SgtPooki 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 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 @@ | ||
REACT_APP_VERSION=$npm_package_version | ||
VITE_VERSION=$npm_package_version | ||
This file contains 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 |
---|---|---|
|
@@ -19,3 +19,6 @@ | |
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
/test-results/ | ||
/playwright-report/ | ||
/playwright/.cache/ |
This file contains 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 |
---|---|---|
|
@@ -8,17 +8,8 @@ | |
manifest.json provides metadata used when your web app is added to the | ||
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/ | ||
--> | ||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json"> | ||
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> | ||
<!-- | ||
Notice the use of %PUBLIC_URL% in the tags above. | ||
It will be replaced with the URL of the `public` folder during the build. | ||
Only files inside the `public` folder can be referenced from the HTML. | ||
|
||
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will | ||
work correctly both with client-side routing and a non-root public URL. | ||
Learn how to configure a non-root public URL by running `npm run build`. | ||
--> | ||
<link rel="manifest" href="/manifest.json"> | ||
<link rel="shortcut icon" href="/favicon.ico"> | ||
Comment on lines
+11
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. part of vite migration |
||
<title>IPFS</title> | ||
</head> | ||
<body> | ||
|
@@ -36,5 +27,6 @@ | |
To begin the development, run `npm start` or `yarn start`. | ||
To create a production bundle, use `npm run build` or `yarn build`. | ||
--> | ||
<script type="module" src="/src/index.jsx"></script> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. part of vite migration |
||
</body> | ||
</html> |
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.
part of vite migration