mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-06 11:37:02 +03:00
- bump all dependences - add github-actions reporter to jest - convert (most) webpack configs to ESM - manifest.cjs cannot be converted since there is no native .json import until node 17
11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
import { merge } from "webpack-merge";
|
|
import common from './webpack.common.js';
|
|
|
|
export default env => {
|
|
let mode = "production";
|
|
env.mode = mode;
|
|
|
|
return merge(common(env), {
|
|
mode
|
|
});
|
|
}; |