5
0
Fork 0
mirror of https://github.com/pre-commit/action.git synced 2025-11-07 10:46:56 +00:00
pre-commit-action/webpack.config.js
2020-05-22 14:29:06 -07:00

11 lines
220 B
JavaScript

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