16e66346d7
BREAKING CHANGE: Node v12.20+, v14.14+, or v16.0+ is required * fix!: remove esm package, use native Node ES modules * fix: fix some CJS imports
25 lines
796 B
JavaScript
25 lines
796 B
JavaScript
import svgs from '../bin/svgs.js'
|
|
|
|
const inlineSvgs = svgs.filter(_ => _.inline).map(_ => `#${_.id}`)
|
|
const mode = process.env.NODE_ENV || 'production'
|
|
const dev = mode === 'development'
|
|
|
|
const resolve = {
|
|
extensions: ['.js', '.json', '.html'],
|
|
mainFields: ['svelte', 'module', 'browser', 'main'],
|
|
alias: {
|
|
// 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.
|
|
'./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
|
|
}
|
|
}
|
|
|
|
export {
|
|
mode,
|
|
dev,
|
|
resolve,
|
|
inlineSvgs
|
|
}
|