summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js84
1 files changed, 84 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js
new file mode 100644
index 0000000..2d63df9
--- /dev/null
+++ b/webpack.config.js
@@ -0,0 +1,84 @@
+const path = require('path'),
+ NotifierPlugin = require('webpack-notifier'),
+ EsLintPlugin = require('eslint-webpack-plugin'),
+ WebpackbarPlugin = require('webpackbar'),
+ CleanTerminalPlugin = require('clean-terminal-webpack-plugin'),
+ {CleanWebpackPlugin} = require('clean-webpack-plugin'),
+ CopyPlugin = require('copy-webpack-plugin');
+
+const paths = {
+ base: './resources',
+ target: './dist',
+};
+
+const absBasePath = path.resolve(__dirname, paths.base),
+ absTargetPath = path.resolve(__dirname, paths.target),
+
+ js_entry = p => `./js/${p}`;
+
+module.exports = (env, argv) => {
+ const isProd = argv.mode === 'production',
+ isDev = argv.mode === 'development',
+ isWatch = typeof argv.watch !== 'undefined' && argv.watch === true;
+
+ return {
+
+ entry: {
+ scorm_player: [js_entry('scorm_player.js')]
+ },
+
+ output: {
+ filename: 'js/[name].js',
+ path: absTargetPath,
+ publicPath: paths.pub,
+ },
+
+ context: absBasePath,
+
+ devtool: isDev ? 'source-map' : false,
+
+ watchOptions: {
+ ignored: ['node_modules/**']
+ },
+
+ performance: {
+ hints: false
+ },
+
+ plugins: [
+ new CleanWebpackPlugin({
+ cleanStaleWebpackAssets: !isWatch
+ }),
+ new EsLintPlugin({
+ overrideConfig: {
+ rules: {
+ "no-console": isProd ? 2 : 1,
+ "no-debugger": isProd ? 2 : 1,
+ "no-empty": isProd ? 2 : 1,
+ "no-unused-vars": isProd ? 2 : 1,
+ "no-constant-condition": isProd ? 2 : 1,
+ }
+ }
+ }),
+ new NotifierPlugin(),
+ new WebpackbarPlugin(),
+ new CleanTerminalPlugin(),
+ ],
+
+ externals: {
+ },
+
+ module: {
+ rules: [
+ {
+ test: /\.js$/i,
+ include: absBasePath,
+ use: [
+ 'babel-loader'
+ ]
+ },
+ ],
+ },
+
+ };
+};