blob: 53532ac70f1e2f7326fb289639ba20c7490fe597 [file] [log] [blame]
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const ESLintPlugin = require('eslint-webpack-plugin');
const path = require('path');
const settings = require('./tasks/helper').init().readSettingsFile()
.template.development;
module.exports = {
mode: 'development',
entry: {
bundle: [
'core-js/features/array',
'core-js/features/string/ends-with',
'core-js/features/string/starts-with',
'core-js/features/object',
'core-js/features/symbol',
'core-js/features/promise',
'regenerator-runtime/runtime',
'./app/main.js',
], //Our starting point for our development.
},
output: {
path: path.join(__dirname, '/dist/debug/'),
filename: 'dashboard.assets/js/[name].js'
},
plugins: [
new ESLintPlugin({
extensions: [`js`, `jsx`],
}),
new webpack.optimize.LimitChunkCountPlugin({maxChunks: 1}),
new HtmlWebpackPlugin(Object.assign({
template: settings.src,
title: 'Project Fauxton',
filename: 'index.html',
generationLabel: 'Fauxton Dev',
generationDate: new Date().toISOString()
}, settings.variables)),
new MiniCssExtractPlugin({
filename: 'dashboard.assets/css/styles.[chunkhash].css',
chunkFilename: 'dashboard.assets/css/styles.[chunkhash].css'
}),
new webpack.LoaderOptionsPlugin({
debug: true
})
],
module: {
rules: [
{
test: /\.jsx?$/,
exclude: ['/node_modules/'],
use: [{
loader: 'babel-loader'
}],
},
{
test: require.resolve('jquery'),
use: [{
loader: 'expose-loader',
options: {
exposes: ['jQuery', '$']
},
},
]},
{
test: require.resolve("backbone"),
use: [{
loader: 'expose-loader',
options: {
exposes: [{
globalName: 'Backbone',
override: true,
}],
},
}]
},
{
// We load Sass files through the extract text plugin.
test: /\.scss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: "../../",
},
},
"css-loader",
{
loader: "sass-loader",
options: {
sassOptions: {
includePaths: ["node_modules"],
},
additionalData: `$largeLogoPath: "${settings.variables.largeLogoPath}"; $smallLogoPath: "${settings.variables.smallLogoPath}";`,
sourceMap: false,
},
},
],
},
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: '../../'
},
},
"css-loader"
]
},
{
test: /\.woff(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'dashboard.assets/fonts/[name][ext]'
},
},
{
test: /\.woff2(\?\S*)?$/,
type: 'asset/resource',
generator: {
filename: 'dashboard.assets/fonts/[name][ext]'
},
},
{
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'dashboard.assets/fonts/[name][ext]'
},
},
{
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'dashboard.assets/fonts/[name][ext]'
},
},
{
test: /\.png(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'dashboard.assets/img/[name][ext]'
},
},
{
test: /\.gif(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'dashboard.assets/img/[name][ext]'
},
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
type: 'asset/resource',
generator: {
filename: 'dashboard.assets/img/[name][ext]'
},
}
]
},
resolve: {
extensions: ['*', '.js', '.jsx'], //We can use .js and React's .jsx files using Babel
alias: {
"underscore": "lodash",
}
},
devtool: 'source-map'
};