webpack.config.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. const path = require("path");
  2. const HtmlWebpackPlugin = require("html-webpack-plugin");
  3. const UpdateVersionPlugin = require("./updateVersionPlugin");
  4. //const ChangeScriptSourcePlugin = require('./changeScriptSourcePlugin');
  5. const CopyPlugin = require("copy-webpack-plugin");
  6. const CleanWebpackPlugin = require("clean-webpack-plugin").CleanWebpackPlugin;
  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. test: /\.tsx?$/,
  39. use: "ts-loader",
  40. exclude: /node_modules/,
  41. },
  42. {
  43. test: /\.csv$/,
  44. use: [
  45. {
  46. loader: path.resolve(__dirname, "i18n_csv_loader"),
  47. },
  48. ],
  49. exclude: /node_modules/,
  50. },
  51. ],
  52. },
  53. resolve: {
  54. extensions: [".tsx", ".ts", ".js", ".csv"],
  55. },
  56. stats: {
  57. colors: true,
  58. },
  59. plugins: [
  60. new CleanWebpackPlugin({
  61. cleanOnceBeforeBuildPatterns: [path.resolve(__dirname, "build/**/*")],
  62. watch: true,
  63. }),
  64. new UpdateVersionPlugin(),
  65. new HtmlWebpackPlugin({
  66. template: "templates/index.html",
  67. filename: path.resolve(__dirname, "build", "index.html"),
  68. }),
  69. new HtmlWebpackPlugin({
  70. template: "templates/runner.html",
  71. filename: path.resolve(__dirname, "build", "runner.html"),
  72. }),
  73. new HtmlWebpackPlugin({
  74. template: "templates/process.html",
  75. filename: path.resolve(__dirname, "build", "process.html"),
  76. }),
  77. /*new ChangeScriptSourcePlugin(),*/
  78. new CopyPlugin([
  79. {
  80. from: "js/iassign-integration-functions.js",
  81. to: path.resolve(__dirname, "build/js"),
  82. },
  83. {
  84. from: "css/ivprog-visual-1.0.css",
  85. to: path.resolve(__dirname, "build/css"),
  86. },
  87. { from: "css/ivprog-term.css", to: path.resolve(__dirname, "build/css") },
  88. {
  89. from: "css/ivprog-assessment.css",
  90. to: path.resolve(__dirname, "build/css"),
  91. },
  92. {
  93. from: "css/ivprog-editor.css",
  94. to: path.resolve(__dirname, "build/css"),
  95. },
  96. { from: "css/roboto.css", to: path.resolve(__dirname, "build/css") },
  97. { from: "css/fonts/", to: path.resolve(__dirname, "build/css/fonts") },
  98. { from: "js/Sortable.js", to: path.resolve(__dirname, "build/js") },
  99. { from: "js/jquery.min.js", to: path.resolve(__dirname, "build/js") },
  100. { from: "js/jquery-ui.min.js", to: path.resolve(__dirname, "build/js") },
  101. { from: "js/semantic.min.js", to: path.resolve(__dirname, "build/js") },
  102. {
  103. from: "css/semantic.min.css",
  104. to: path.resolve(__dirname, "build/css"),
  105. },
  106. { from: "css/themes/", to: path.resolve(__dirname, "build/css/themes") },
  107. { from: "img/trash-icon.png", to: path.resolve(__dirname, "build/img") },
  108. { from: "img/empty.svg", to: path.resolve(__dirname, "build/img") },
  109. { from: "img/new_line.svg", to: path.resolve(__dirname, "build/img") },
  110. { from: "img/no_new_line.svg", to: path.resolve(__dirname, "build/img") },
  111. {
  112. from: "js/jquery.json-editor.min.js",
  113. to: path.resolve(__dirname, "build/js"),
  114. },
  115. {
  116. from: "node_modules/codemirror/lib/codemirror.css",
  117. to: path.resolve(__dirname, "build/css"),
  118. },
  119. {
  120. from: "node_modules/codemirror/addon/hint/show-hint.css",
  121. to: path.resolve(__dirname, "build/css"),
  122. },
  123. {
  124. from: "node_modules/codemirror/theme/ttcn.css",
  125. to: path.resolve(__dirname, "build/css"),
  126. },
  127. /*{from:'index.html', to:path.resolve(__dirname, 'build')},
  128. {from:'runner.html', to:path.resolve(__dirname, 'build')},*/
  129. ]),
  130. ],
  131. optimization: {
  132. splitChunks: {
  133. chunks: "all",
  134. },
  135. },
  136. devtool: "source-map",
  137. watchOptions: {
  138. ignored: [path.resolve(__dirname, ".ima_version.json")],
  139. },
  140. };