5
0
Fork 0
mirror of https://github.com/pre-commit/action.git synced 2025-11-07 10:46:56 +00:00

set mode: production to silence webpack warning

This commit is contained in:
Anthony Sottile 2020-05-22 14:29:06 -07:00
parent 23a27b703c
commit 771019abd6

View file

@ -1,10 +1,11 @@
const path = require('path'); const path = require('path');
module.exports = { module.exports = {
target: 'node', target: 'node',
entry: './index.js', entry: './index.js',
output: { mode: 'production',
filename: 'index.js', output: {
path: path.resolve(__dirname, 'dist'), filename: 'index.js',
}, path: path.resolve(__dirname, 'dist'),
},
}; };