webpack.config.js 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. var path = require('path');
  2. var HtmlWebpackPlugin = require('html-webpack-plugin');
  3. var UpdateVersionPlugin = require('./updateVersionPlugin');
  4. //var ChangeScriptSourcePlugin = require('./changeScriptSourcePlugin');
  5. var CopyPlugin = require('copy-webpack-plugin');
  6. var CleanWebpackPlugin = require('clean-webpack-plugin');
  7. module.exports = {
  8. entry: path.resolve(__dirname, 'js/main.js'),
  9. output: {
  10. path: path.resolve(__dirname, 'build',"js"),
  11. filename: '[name].[contenthash].js',
  12. library: 'ivprogCore',
  13. libraryTarget: 'umd'
  14. },
  15. node: {
  16. fs: 'empty',
  17. },
  18. module: {
  19. rules: [
  20. {
  21. test: /\.js$/,
  22. exclude: /(node_modules)/,
  23. use: {
  24. loader: "babel-loader",
  25. options: {
  26. presets: ["@babel/preset-env"]
  27. }
  28. }
  29. },
  30. {
  31. test: /\.g4$/,
  32. exclude: /(node_modules)/,
  33. use: {
  34. loader:'antlr4-webpack-loader'
  35. }
  36. }
  37. ]
  38. },
  39. stats: {
  40. colors: true
  41. },
  42. plugins: [
  43. new CleanWebpackPlugin({
  44. cleanOnceBeforeBuildPatterns:[path.resolve(__dirname, 'build/**/*')],
  45. watch: true
  46. }),
  47. new UpdateVersionPlugin(),
  48. new HtmlWebpackPlugin({
  49. template: 'templates/index.html',
  50. filename: path.resolve(__dirname, 'build', 'index.html')
  51. }),
  52. new HtmlWebpackPlugin({
  53. template: 'templates/runner.html',
  54. filename: path.resolve(__dirname, 'build', 'runner.html')
  55. }),
  56. /*new ChangeScriptSourcePlugin(),*/
  57. new CopyPlugin([
  58. {from:"css/ivprog-visual-1.0.css", to:path.resolve(__dirname, 'build/css')},
  59. {from:"css/ivprog-term.css", to:path.resolve(__dirname, 'build/css')},
  60. {from:'js/Sortable.js', to:path.resolve(__dirname, 'build/js')},
  61. {from:'js/iassign-integration-functions.js', to:path.resolve(__dirname, 'build/js')},
  62. /*{from:'index.html', to:path.resolve(__dirname, 'build')},
  63. {from:'runner.html', to:path.resolve(__dirname, 'build')},*/
  64. ])
  65. ],
  66. optimization: {
  67. splitChunks: {
  68. chunks: 'all'
  69. }
  70. },
  71. devtool: 'source-map',
  72. watchOptions: {
  73. ignored: [
  74. path.resolve(__dirname, '.ima_version.json'),
  75. path.resolve(__dirname, 'index.html'),
  76. path.resolve(__dirname, 'runner.html')
  77. ]
  78. }
  79. };