mirror of
https://github.com/pre-commit/action.git
synced 2025-11-07 10:46:56 +00:00
11 lines
220 B
JavaScript
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'),
|
|
},
|
|
};
|