2022-08-11 02:38:23 +03:00
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
|
|
const { VanillaExtractPlugin } = require('@vanilla-extract/webpack-plugin')
|
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
2022-09-22 22:29:29 +03:00
|
|
|
const { DefinePlugin } = require('webpack')
|
|
|
|
|
|
|
|
const commitHash = require('child_process').execSync('git rev-parse HEAD')
|
2022-08-11 02:38:23 +03:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
babel: {
|
|
|
|
plugins: ['@vanilla-extract/babel-plugin'],
|
2023-01-10 00:54:48 +03:00
|
|
|
},
|
|
|
|
jest: {
|
|
|
|
configure(jestConfig) {
|
|
|
|
return Object.assign({}, jestConfig, {
|
2023-01-26 01:12:23 +03:00
|
|
|
transformIgnorePatterns: ['@uniswap/conedison/format', '@uniswap/conedison/provider'],
|
2023-01-10 00:54:48 +03:00
|
|
|
moduleNameMapper: {
|
|
|
|
'@uniswap/conedison/format': '@uniswap/conedison/dist/format',
|
2023-01-26 01:12:23 +03:00
|
|
|
'@uniswap/conedison/provider': '@uniswap/conedison/dist/provider',
|
2023-01-10 00:54:48 +03:00
|
|
|
},
|
|
|
|
})
|
|
|
|
},
|
2022-08-11 02:38:23 +03:00
|
|
|
},
|
|
|
|
webpack: {
|
2022-09-22 22:29:29 +03:00
|
|
|
plugins: [
|
2023-03-03 20:56:33 +03:00
|
|
|
new VanillaExtractPlugin({ identifiers: 'short' }),
|
2022-09-22 22:29:29 +03:00
|
|
|
new DefinePlugin({
|
|
|
|
'process.env.REACT_APP_GIT_COMMIT_HASH': JSON.stringify(commitHash.toString()),
|
|
|
|
}),
|
|
|
|
],
|
2022-08-11 02:38:23 +03:00
|
|
|
configure: (webpackConfig) => {
|
|
|
|
const instanceOfMiniCssExtractPlugin = webpackConfig.plugins.find(
|
|
|
|
(plugin) => plugin instanceof MiniCssExtractPlugin
|
|
|
|
)
|
|
|
|
if (instanceOfMiniCssExtractPlugin !== undefined) instanceOfMiniCssExtractPlugin.options.ignoreOrder = true
|
2022-11-17 21:59:40 +03:00
|
|
|
|
|
|
|
// We're currently on Webpack 4.x that doesn't support the `exports` field in package.json.
|
|
|
|
// See https://github.com/webpack/webpack/issues/9509.
|
|
|
|
//
|
|
|
|
// In case you need to add more modules, make sure to remap them to the correct path.
|
|
|
|
//
|
|
|
|
// Map @uniswap/conedison to its dist folder.
|
|
|
|
// This is required because conedison uses * to redirect all imports to its dist.
|
|
|
|
webpackConfig.resolve.alias['@uniswap/conedison'] = '@uniswap/conedison/dist'
|
|
|
|
|
2022-08-11 02:38:23 +03:00
|
|
|
return webpackConfig
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|