This repository was archived by the owner on Jun 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 11# required because react-scripts scans *up* the tree from this project and finds
22# a conflicting version of eslint in the node_modules dir for js-ipfs.
33SKIP_PREFLIGHT_CHECK = true
4+
5+ # Turning these on can cause OOM errors
6+ GENERATE_SOURCEMAP = false
Original file line number Diff line number Diff line change 3737 "@testing-library/react" : " ^12.1.2" ,
3838 "@testing-library/user-event" : " ^13.5.0" ,
3939 "dot-prop" : " ^7.1.1" ,
40- "ipfs-core" : " ^0.14.0 " ,
40+ "ipfs-core" : " ^0.15.2 " ,
4141 "ipfs-css" : " ^1.3.0" ,
4242 "react" : " ^17.0.2" ,
4343 "react-dom" : " ^17.0.2" ,
44- "react-scripts" : " 5.0.0 " ,
44+ "react-scripts" : " 5.0.1 " ,
4545 "tachyons" : " ^4.12.0" ,
4646 "web-vitals" : " ^2.1.2"
4747 },
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ const IpfsId = ({keys, obj}) => {
7777 { keys ?. map ( ( key ) => (
7878 < div className = 'mb4' key = { key } >
7979 < Title > { key } </ Title >
80- < div className = 'bg-white pa2 br2 truncate monospace' data-test = { key } > { obj [ key ] } </ div >
80+ < div className = 'bg-white pa2 br2 truncate monospace' data-test = { key } > { obj [ key ] . toString ( ) } </ div >
8181 </ div >
8282 ) ) }
8383 </ >
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ import 'tachyons'
55import "ipfs-css" ;
66import './index.css'
77
8- import App from './App' ;
9- import reportWebVitals from './reportWebVitals' ;
8+ import App from './App.js ' ;
9+ import reportWebVitals from './reportWebVitals.js ' ;
1010
1111ReactDOM . render (
1212 < React . StrictMode >
Original file line number Diff line number Diff line change 1- const { test, expect } = require ( '@playwright/test' ) ;
2- const { playwright } = require ( 'test-util-ipfs-example' ) ;
1+ import { test , expect } from '@playwright/test' ;
2+ import { playwright } from 'test-util-ipfs-example' ;
33
44// Setup
55const play = test . extend ( {
You can’t perform that action at this time.
0 commit comments