diff options
author | Sam Light <samlight1994@gmail.com> | 2022-09-05 12:29:33 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2022-09-05 12:29:33 +0100 |
commit | b9de84a6160788a226582f0a23dadb62e55ccab5 (patch) | |
tree | c3556eb0d140e7825700a0252220e223b2b0b474 /webpack.config.js | |
parent | 7c93841d147572f5c87c088ff4f599663ce4bac7 (diff) |
Added build system for the js
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 84 |
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' + ] + }, + ], + }, + + }; +}; |