mirror of
https://github.com/flarum/core.git
synced 2025-05-16 04:09:41 +02:00
* feat(jest): create jest config package for unit testing * chore: housekeeping * fix: now we need to explicitly allow importing without extension * fix: recover EditorDriverInterface import * Apply suggestions from code review * chore: yarn Signed-off-by: Sami Mazouz <sychocouldy@gmail.com>
9 lines
178 B
JavaScript
Executable File
9 lines
178 B
JavaScript
Executable File
const config = require('flarum-webpack-config');
|
|
const { merge } = require('webpack-merge');
|
|
|
|
module.exports = merge(config(), {
|
|
output: {
|
|
library: 'flarum.core',
|
|
},
|
|
});
|