File size: 1,181 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
const path = require('path');
const debug = require('debug')('build:backpack');
const dir = process.env.DIR;
if (!dir) throw new Error('Define directory to build with the -d option.');
debug(
`> Building ${dir}, entry: ${dir}/index.js, output: build-${dir}/main.js`
);
module.exports = {
webpack: (config, options, webpack) => {
config.entry.main = [`./${dir}/index.js`];
config.output.path = path.join(process.cwd(), `build-${dir}`);
const nodePath = (process.env.NODE_PATH || '')
.split(path.delimiter)
.filter(folder => folder && !path.isAbsolute(folder))
.map(folder => path.resolve('./', folder))
.join(path.delimiter);
if (process.env.NODE_ENV !== 'production' && !process.env.SSR) {
config.plugins.push(
new webpack.WatchIgnorePlugin([
path.resolve(__dirname, './src'),
path.resolve(__dirname, './build'),
])
);
}
// Tell Sentry which server the errors are coming from
config.plugins.push(
new webpack.DefinePlugin({
'process.env.SENTRY_NAME': JSON.stringify(dir),
})
);
config.resolve.modules.push(nodePath);
return config;
},
};
|