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/*
|
node_modules/*
|
||||||
dist/*
|
dist/*
|
||||||
playground/
|
playground/
|
||||||
webpack.config.js
|
|
||||||
|
|
|
@ -3,12 +3,12 @@ const path = require('path');
|
||||||
const webpack = require('webpack');
|
const webpack = require('webpack');
|
||||||
|
|
||||||
// Plugins
|
// Plugins
|
||||||
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||||
|
|
||||||
// PostCss
|
// PostCss
|
||||||
var autoprefixer = require('autoprefixer');
|
const autoprefixer = require('autoprefixer');
|
||||||
var postcssVars = require('postcss-simple-vars');
|
const postcssVars = require('postcss-simple-vars');
|
||||||
var postcssImport = require('postcss-import');
|
const postcssImport = require('postcss-import');
|
||||||
|
|
||||||
const base = {
|
const base = {
|
||||||
devtool: 'cheap-module-source-map',
|
devtool: 'cheap-module-source-map',
|
||||||
|
|
Loading…
Reference in a new issue