mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 01:01:55 +01:00
2665327729
- 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
No EOL
212 B
JavaScript
11 lines
No EOL
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
|
|
});
|
|
}; |