Skip to content

Commit cc63951

Browse files
committed
const not var
1 parent b9f9048 commit cc63951

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

webpack.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
const distDir = __dirname + '/dist/textpattern';
22

3-
var ExtractTextPlugin = require('extract-text-webpack-plugin');
4-
var CleanWebpackPlugin = require('clean-webpack-plugin');
5-
var StyleLintPlugin = require('stylelint-webpack-plugin');
3+
const ExtractTextPlugin = require('extract-text-webpack-plugin');
4+
const CleanWebpackPlugin = require('clean-webpack-plugin');
5+
const StyleLintPlugin = require('stylelint-webpack-plugin');
66

77
module.exports = [
88
{

0 commit comments

Comments
 (0)