mirror of
https://github.com/pre-commit/action.git
synced 2025-11-07 18:56:55 +00:00
10 lines
180 B
JavaScript
10 lines
180 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
target: 'node',
|
|
entry: './index.js',
|
|
output: {
|
|
filename: 'index.js',
|
|
path: path.resolve(__dirname, 'dist'),
|
|
},
|
|
};
|