2021-07-05 05:19:04 +02:00
|
|
|
import svgs from '../bin/svgs.js'
|
2019-03-03 04:02:06 +01:00
|
|
|
|
|
|
|
const inlineSvgs = svgs.filter(_ => _.inline).map(_ => `#${_.id}`)
|
|
|
|
const mode = process.env.NODE_ENV || 'production'
|
2018-12-16 04:21:20 +01:00
|
|
|
const dev = mode === 'development'
|
|
|
|
|
2018-12-18 09:43:51 +01:00
|
|
|
const resolve = {
|
|
|
|
extensions: ['.js', '.json', '.html'],
|
2020-11-29 23:13:27 +01:00
|
|
|
mainFields: ['svelte', 'module', 'browser', 'main'],
|
|
|
|
alias: {
|
2021-02-16 00:07:19 +01:00
|
|
|
// All browsers we target support Intl.PluralRules (or it's polyfilled).
|
|
|
|
// So format-message-interpret can fall back to that. This file is pretty big (9.83kB) and it's not needed.
|
2021-07-05 05:19:04 +02:00
|
|
|
'./plurals': '@stdlib/utils-noop',
|
|
|
|
'lookup-closest-locale': '@stdlib/utils-noop', // small, but also not needed
|
|
|
|
'svelte/store.umd.js': 'svelte/store.js' // have to use UMD for Mocha, but in Webpack we can use the ESM version
|
2020-11-29 23:13:27 +01:00
|
|
|
}
|
2018-12-18 09:43:51 +01:00
|
|
|
}
|
|
|
|
|
2021-07-05 05:19:04 +02:00
|
|
|
export {
|
2018-12-16 04:21:20 +01:00
|
|
|
mode,
|
2018-12-18 09:43:51 +01:00
|
|
|
dev,
|
2019-03-03 04:02:06 +01:00
|
|
|
resolve,
|
2021-07-05 01:38:58 +02:00
|
|
|
inlineSvgs
|
2018-12-16 04:21:20 +01:00
|
|
|
}
|