chore: adjust renovate config

This commit is contained in:
dancingCycle 2022-06-23 22:16:41 +02:00
parent 63caa9342d
commit 0a5e608ea6
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
"automerge": true
},
{
"matchingUpdateTypes": ["minor","patch"],
"matchUpdateTypes": ["minor","patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
}

View File

@ -1,4 +1,4 @@
//generate an HTML5 file including all webpack bundles in the body using script tags
//generate a HTML5 file including all webpack bundles in the body using script tags
const HtmlWebpackPlugin = require('html-webpack-plugin');
//path is used to resolve properly across the OS
const path = require('path');
@ -27,7 +27,7 @@ module.exports = {
extensions: ['*', '.js', '.jsx'],
},
plugins: [
// create an plugin instance so that you can use it several times anywhere
// create a plugin instance so that you can use it several times anywhere
new HtmlWebpackPlugin({
title: 'Production',
template: path.resolve(__dirname, "../public/index.html")