* Revert "chore: upgrade to node 18" * Revert "fix: bump npm from 10.2.x to 10.5.x" This reverts commitb6662d4ee0. * Revert "fix: replace outdated webpack plugins" This reverts commitb204f1b572. * Revert "build: Remove the `npm bin` calls from package.json" This reverts commit4e3dd161ff. * fix: fix bad conflict resolution. --------- Co-authored-by: Diana Huang <dkh@edx.org>
65 lines
2.0 KiB
JavaScript
65 lines
2.0 KiB
JavaScript
/* eslint-env node */
|
|
|
|
'use strict';
|
|
|
|
var Merge = require('webpack-merge');
|
|
var path = require('path');
|
|
var webpack = require('webpack');
|
|
var _ = require('underscore');
|
|
|
|
var commonConfig = require('./webpack.common.config.js');
|
|
|
|
module.exports = _.values(Merge.smart(commonConfig, {
|
|
web: {
|
|
output: {
|
|
filename: '[name].js'
|
|
},
|
|
devtool: 'source-map',
|
|
plugins: [
|
|
new webpack.LoaderOptionsPlugin({
|
|
debug: true
|
|
}),
|
|
new webpack.DefinePlugin({
|
|
'process.env.NODE_ENV': JSON.stringify('development'),
|
|
'process.env.JS_ENV_EXTRA_CONFIG': process.env.JS_ENV_EXTRA_CONFIG || '{}'
|
|
})
|
|
],
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /.scss$/,
|
|
include: [
|
|
/paragon/,
|
|
/font-awesome/
|
|
],
|
|
use: [
|
|
'style-loader',
|
|
{
|
|
loader: 'css-loader',
|
|
options: {
|
|
sourceMap: true,
|
|
modules: true,
|
|
localIdentName: '[name]__[local]'
|
|
}
|
|
},
|
|
{
|
|
loader: 'sass-loader',
|
|
options: {
|
|
data: '$base-rem-size: 0.625; @import "paragon-reset";',
|
|
includePaths: [
|
|
path.join(__dirname, './node_modules/@edx/paragon/src/utils'),
|
|
path.join(__dirname, './node_modules/')
|
|
],
|
|
sourceMap: true
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
watchOptions: {
|
|
ignored: [/node_modules/, /\.git/]
|
|
}
|
|
}
|
|
}));
|