Skip to content

Commit f6f150e

Browse files
committed
yarn run build passing now
1 parent 307fb17 commit f6f150e

23 files changed

+9023
-25
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
/src/locales/**/pseudo.po
1010

1111
# generated graphql types
12-
__generated__/
13-
schema.graphql
1412

1513
# dependencies
1614
/node_modules

craco.config.cjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ module.exports = {
3131
// This is required because conedison uses * to redirect all imports to its dist.
3232
webpackConfig.resolve.alias['@uniswap/conedison'] = '@uniswap/conedison/dist'
3333

34+
// Disable source maps to avoid SourceMapConsumer WASM initialization issues
35+
webpackConfig.devtool = false
36+
3437
return webpackConfig
3538
},
3639
},

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"relay": "relay-compiler relay.config.js",
1212
"relay-thegraph": "relay-compiler relay_thegraph.config.js || true",
1313
"graphql:fetch": "node fetch-schema.js || true",
14-
"graphql:generate": "yarn relay || true",
14+
"graphql:generate": "yarn relay && yarn relay-thegraph",
1515
"prei18n:extract": "node prei18n-extract.js",
1616
"i18n:extract": "lingui extract --locale en-US",
1717
"i18n:compile": "yarn i18n:extract && lingui compile",
@@ -248,4 +248,4 @@
248248
"node": "22.x",
249249
"yarn": ">=1.22"
250250
}
251-
}
251+
}

src/graphql/data/__generated__/TokenPriceQuery.graphql.ts

Lines changed: 251 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)