2021-07-05 03:19:04 +00:00
|
|
|
import svgs from '../bin/svgs.js'
|
2019-03-03 03:02:06 +00:00
|
|
|
|
|
|
|
const inlineSvgs = svgs.filter(_ => _.inline).map(_ => `#${_.id}`)
|
|
|
|
const mode = process.env.NODE_ENV || 'production'
|
2018-12-16 03:21:20 +00:00
|
|
|
const dev = mode === 'development'
|
|
|
|
|
2018-12-18 08:43:51 +00:00
|
|
|
const resolve = {
|
|
|
|
extensions: ['.js', '.json', '.html'],
|
2020-11-29 22:13:27 +00:00
|
|
|
mainFields: ['svelte', 'module', 'browser', 'main'],
|
|
|
|
alias: {
|
2021-02-15 23:07:19 +00: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 03:19:04 +00: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 22:13:27 +00:00
|
|
|
}
|
2018-12-18 08:43:51 +00:00
|
|
|
}
|
|
|
|
|
2021-07-05 03:19:04 +00:00
|
|
|
export {
|
2018-12-16 03:21:20 +00:00
|
|
|
mode,
|
2018-12-18 08:43:51 +00:00
|
|
|
dev,
|
2019-03-03 03:02:06 +00:00
|
|
|
resolve,
|
2021-07-04 23:38:58 +00:00
|
|
|
inlineSvgs
|
2018-12-16 03:21:20 +00:00
|
|
|
}
|