blob: 8a87aa51a532073a91cc6e3596a0b8240b3d2d5a [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 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 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,
}],
},
}]
},
{
test: /\.less$/,
use: [
"style-loader",
"css-loader",
{
loader: "less-loader",
options: {
lessOptions: {
modifyVars: {
largeLogoPath: "'" + settings.variables.largeLogoPath + "'",
smallLogoPath: "'" + settings.variables.smallLogoPath + "'"
}
}
}
}
]
},
{
test: /\.css$/,
use: [
"style-loader",
"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'
};