summaryrefslogtreecommitdiff
path: root/webpack.config.js
blob: 2d63df9f295417fcf8a2be4b4524fcb1687dcbfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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'
          ]
        },
      ],
    },

  };
};