mirror of
https://github.com/koalyptus/TableFilter.git
synced 2026-03-14 22:55:44 +01:00
convert var to const in webpack configs
This commit is contained in:
parent
98aca44cb9
commit
2452a0bd9e
2 changed files with 7 additions and 7 deletions
|
|
@ -1,6 +1,6 @@
|
|||
var webpackConfig = require('./webpack.config.js');
|
||||
var webpack = require('webpack');
|
||||
var StringReplacePlugin = require('string-replace-webpack-plugin');
|
||||
const webpackConfig = require('./webpack.config.js');
|
||||
const webpack = require('webpack');
|
||||
const StringReplacePlugin = require('string-replace-webpack-plugin');
|
||||
|
||||
module.exports = {
|
||||
mode: 'development',
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
var webpack = require('webpack');
|
||||
var webpackConfig = require('./webpack.config.js');
|
||||
var path = require('path');
|
||||
var Clean = require('clean-webpack-plugin');
|
||||
const webpack = require('webpack');
|
||||
const webpackConfig = require('./webpack.config.js');
|
||||
const path = require('path');
|
||||
const Clean = require('clean-webpack-plugin');
|
||||
|
||||
module.exports = {
|
||||
mode: 'development',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue