mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-22 13:32:28 -05:00
re-add linting for webpack config
This commit is contained in:
parent
21f24e339c
commit
47e5dd4d2a
2 changed files with 4 additions and 5 deletions
|
@ -1,4 +1,3 @@
|
|||
node_modules/*
|
||||
dist/*
|
||||
playground/
|
||||
webpack.config.js
|
||||
|
|
|
@ -3,12 +3,12 @@ const path = require('path');
|
|||
const webpack = require('webpack');
|
||||
|
||||
// Plugins
|
||||
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
|
||||
// PostCss
|
||||
var autoprefixer = require('autoprefixer');
|
||||
var postcssVars = require('postcss-simple-vars');
|
||||
var postcssImport = require('postcss-import');
|
||||
const autoprefixer = require('autoprefixer');
|
||||
const postcssVars = require('postcss-simple-vars');
|
||||
const postcssImport = require('postcss-import');
|
||||
|
||||
const base = {
|
||||
devtool: 'cheap-module-source-map',
|
||||
|
|
Loading…
Reference in a new issue