From f24f2d15275961f1c0144e68fde75a60aeaaa165 Mon Sep 17 00:00:00 2001 From: Julio Capote Date: Mon, 23 Jan 2023 22:20:47 -0500 Subject: move to bear theme --- themes/even/src/webpack.config.js | 50 --------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 themes/even/src/webpack.config.js (limited to 'themes/even/src/webpack.config.js') diff --git a/themes/even/src/webpack.config.js b/themes/even/src/webpack.config.js deleted file mode 100644 index 0e47863..0000000 --- a/themes/even/src/webpack.config.js +++ /dev/null @@ -1,50 +0,0 @@ -const path = require('path') -const ExtractTextPlugin = require('extract-text-webpack-plugin') -const UglifyJSPlugin = require('uglifyjs-webpack-plugin') - -const extractSass = new ExtractTextPlugin({ - filename: `even.min.css` -}) - -module.exports = { - devtool: 'source-map', - entry: { - even: './js/main.js' - }, - output: { - path: path.join(__dirname, '../static/dist'), - filename: `[name].min.js` - }, - module: { - rules: [ - { - test: /\.js$/, - exclude: /node_modules/, - loader: 'babel-loader' - }, - { - test: /\.scss$/, - use: extractSass.extract({ - use: [{ - loader: 'css-loader', options: {minimize: true, sourceMap: true} - }, { - loader: 'postcss-loader', options: {sourceMap: true} - }, { - loader: 'sass-loader', options: {sourceMap: true} - }], - fallback: 'style-loader' - }) - }, - { - test: /iconfont\.(woff|woff2|eot|ttf|otf|svg)$/, - use: ['file-loader?name=[path][name].[ext]?hash=[hash:7]'] - } - ] - }, - plugins: [ - extractSass, - new UglifyJSPlugin({ - sourceMap: true - }) - ] -} -- cgit v1.2.3