webpack.config.js 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. const path = require('path')
  2. const glob = require('glob')
  3. const webpack = require('webpack')
  4. const CopyPlugin = require('copy-webpack-plugin')
  5. const WebpackAssetsManifest = require('webpack-assets-manifest')
  6. const MiniCssExtractPlugin = require('mini-css-extract-plugin')
  7. const {
  8. LezerGrammarCompilerPlugin,
  9. } = require('./webpack-plugins/lezer-grammar-compiler')
  10. const PackageVersions = require('./app/src/infrastructure/PackageVersions')
  11. // Generate a hash of entry points, including modules
  12. const entryPoints = {
  13. main: './frontend/js/main.js',
  14. ide: './frontend/js/ide.js',
  15. 'ide-detached': './frontend/js/ide-detached.js',
  16. marketing: './frontend/js/marketing.js',
  17. style: './frontend/stylesheets/style.less',
  18. 'ieee-style': './frontend/stylesheets/ieee-style.less',
  19. 'light-style': './frontend/stylesheets/light-style.less',
  20. }
  21. // Add entrypoints for each "page"
  22. glob
  23. .sync(path.join(__dirname, 'modules/*/frontend/js/pages/**/*.js'))
  24. .forEach(page => {
  25. // in: /workspace/services/web/modules/foo/frontend/js/pages/bar.js
  26. // out: modules/foo/pages/bar
  27. const name = path
  28. .relative(__dirname, page)
  29. .replace(/frontend[/]js[/]/, '')
  30. .replace(/.js$/, '')
  31. entryPoints[name] = './' + path.relative(__dirname, page)
  32. })
  33. glob.sync(path.join(__dirname, 'frontend/js/pages/**/*.js')).forEach(page => {
  34. // in: /workspace/services/web/frontend/js/pages/marketing/homepage.js
  35. // out: pages/marketing/homepage
  36. const name = path
  37. .relative(path.join(__dirname, 'frontend/js/'), page)
  38. .replace(/.js$/, '')
  39. entryPoints[name] = './' + path.relative(__dirname, page)
  40. })
  41. function getModuleDirectory(moduleName) {
  42. const entrypointPath = require.resolve(moduleName)
  43. const suffix = `node_modules/${moduleName}`
  44. const idx = entrypointPath.indexOf(suffix)
  45. if (idx === -1) {
  46. throw new Error(`could not find Node module: ${moduleName}`)
  47. }
  48. return entrypointPath.slice(0, idx + suffix.length)
  49. }
  50. const mathjaxDir = getModuleDirectory('mathjax')
  51. const aceDir = getModuleDirectory('ace-builds')
  52. const pdfjsVersions = ['pdfjs-dist210', 'pdfjs-dist213']
  53. const vendorDir = path.join(__dirname, 'frontend/js/vendor')
  54. module.exports = {
  55. // Defines the "entry point(s)" for the application - i.e. the file which
  56. // bootstraps the application
  57. entry: entryPoints,
  58. // Define where and how the bundle will be output to disk
  59. // Note: webpack-dev-server does not write the bundle to disk, instead it is
  60. // kept in memory for speed
  61. output: {
  62. path: path.join(__dirname, 'public'),
  63. publicPath: '/',
  64. // By default write into js directory
  65. filename: 'js/[name]-[contenthash].js',
  66. // Output as UMD bundle (allows main JS to import with CJS, AMD or global
  67. // style code bundles
  68. libraryTarget: 'umd',
  69. // Name the exported variable from output bundle
  70. library: ['Frontend', '[name]'],
  71. },
  72. // Define how file types are handled by webpack
  73. module: {
  74. rules: [
  75. {
  76. // Pass application JS/TS files through babel-loader, compiling to ES5
  77. test: /\.[j|t]sx?$/,
  78. // Only compile application files (npm and vendored dependencies are in
  79. // ES5 already)
  80. exclude: [/node_modules\/(?!react-dnd\/)/, vendorDir],
  81. use: [
  82. {
  83. loader: 'babel-loader',
  84. options: {
  85. // Configure babel-loader to cache compiled output so that
  86. // subsequent compile runs are much faster
  87. cacheDirectory: true,
  88. configFile: path.join(__dirname, './babel.config.json'),
  89. },
  90. },
  91. ],
  92. type: 'javascript/auto',
  93. },
  94. {
  95. // Pass Less files through less-loader/css-loader/mini-css-extract-
  96. // plugin (note: run in reverse order)
  97. test: /\.less$/,
  98. use: [
  99. // Allows the CSS to be extracted to a separate .css file
  100. { loader: MiniCssExtractPlugin.loader },
  101. // Resolves any CSS dependencies (e.g. url())
  102. { loader: 'css-loader' },
  103. {
  104. // Runs autoprefixer on CSS via postcss
  105. loader: 'postcss-loader',
  106. options: {
  107. postcssOptions: {
  108. plugins: ['autoprefixer'],
  109. },
  110. },
  111. },
  112. // Compiles the Less syntax to CSS
  113. { loader: 'less-loader' },
  114. ],
  115. },
  116. {
  117. // Pass CSS files through css-loader & mini-css-extract-plugin (note: run in reverse order)
  118. test: /\.css$/i,
  119. use: [MiniCssExtractPlugin.loader, 'css-loader'],
  120. },
  121. {
  122. // Load fonts
  123. test: /\.(woff|woff2)$/,
  124. type: 'asset/resource',
  125. generator: {
  126. filename: 'fonts/[name]-[contenthash][ext]',
  127. },
  128. },
  129. {
  130. // Load images (static files)
  131. test: /\.(svg|gif|png|jpg|pdf)$/,
  132. type: 'asset/resource',
  133. generator: {
  134. filename: 'images/[name]-[contenthash][ext]',
  135. },
  136. },
  137. {
  138. // These options are necessary for handlebars to have access to helper
  139. // methods
  140. test: /\.handlebars$/,
  141. loader: 'handlebars-loader',
  142. options: {
  143. compat: true,
  144. knownHelpersOnly: false,
  145. runtimePath: 'handlebars/runtime',
  146. },
  147. },
  148. {
  149. // Load translations files with custom loader, to extract and apply
  150. // fallbacks
  151. test: /locales\/(\w{2}(-\w{2})?)\.json$/,
  152. use: [
  153. {
  154. loader: path.join(__dirname, 'frontend/translations-loader.js'),
  155. },
  156. ],
  157. },
  158. // Allow for injection of modules dependencies by reading contents of
  159. // modules directory and adding necessary dependencies
  160. {
  161. test: path.join(__dirname, 'modules/modules-main.js'),
  162. use: [
  163. {
  164. loader: 'val-loader',
  165. },
  166. ],
  167. },
  168. {
  169. test: path.join(__dirname, 'modules/modules-ide.js'),
  170. use: [
  171. {
  172. loader: 'val-loader',
  173. },
  174. ],
  175. },
  176. {
  177. // Expose jQuery and $ global variables
  178. test: require.resolve('jquery'),
  179. use: [
  180. {
  181. loader: 'expose-loader',
  182. options: {
  183. exposes: ['$', 'jQuery'],
  184. },
  185. },
  186. ],
  187. },
  188. ],
  189. },
  190. resolve: {
  191. alias: {
  192. // Aliases for AMD modules
  193. // Enables ace/ace shortcut
  194. ace: 'ace-builds/src-noconflict',
  195. // fineupload vendored dependency (which we're aliasing to fineuploadER
  196. // for some reason)
  197. fineuploader: path.join(
  198. __dirname,
  199. `frontend/js/vendor/libs/${PackageVersions.lib('fineuploader')}`
  200. ),
  201. },
  202. symlinks: false,
  203. extensions: ['.js', '.jsx', '.ts', '.tsx', '.json'],
  204. fallback: {
  205. events: require.resolve('events'),
  206. },
  207. },
  208. plugins: [
  209. new LezerGrammarCompilerPlugin(),
  210. // Generate a manifest.json file which is used by the backend to map the
  211. // base filenames to the generated output filenames
  212. new WebpackAssetsManifest({
  213. entrypoints: true,
  214. publicPath: true,
  215. output: 'manifest.json',
  216. }),
  217. new webpack.EnvironmentPlugin({
  218. // Ensure that process.env.RESET_APP_DATA_TIMER is defined, to avoid an error.
  219. // https://github.com/algolia/algoliasearch-client-javascript/issues/756
  220. RESET_APP_DATA_TIMER: '120000',
  221. // Ensure that process.env.CYPRESS is defined (see utils/worker.js)
  222. CYPRESS: false,
  223. }),
  224. // Prevent moment from loading (very large) locale files that aren't used
  225. new webpack.IgnorePlugin({
  226. resourceRegExp: /^\.\/locale$/,
  227. contextRegExp: /moment$/,
  228. }),
  229. // Copy the required files for loading MathJax from MathJax NPM package
  230. new CopyPlugin({
  231. patterns: [
  232. { from: 'MathJax.js', to: 'js/libs/mathjax', context: mathjaxDir },
  233. { from: 'config/**/*', to: 'js/libs/mathjax', context: mathjaxDir },
  234. {
  235. from: 'extensions/**/*',
  236. globOptions: {
  237. // https://github.com/mathjax/MathJax/issues/2403
  238. ignore: ['**/mathmaps/*.js'],
  239. },
  240. to: 'js/libs/mathjax',
  241. context: mathjaxDir,
  242. },
  243. {
  244. from: 'localization/en/**/*',
  245. to: 'js/libs/mathjax',
  246. context: mathjaxDir,
  247. },
  248. {
  249. from: 'jax/output/HTML-CSS/fonts/TeX/**/*',
  250. to: 'js/libs/mathjax',
  251. context: mathjaxDir,
  252. },
  253. {
  254. from: 'jax/output/HTML-CSS/**/*.js',
  255. to: 'js/libs/mathjax',
  256. context: mathjaxDir,
  257. },
  258. {
  259. from: 'jax/element/**/*',
  260. to: 'js/libs/mathjax',
  261. context: mathjaxDir,
  262. },
  263. { from: 'jax/input/**/*', to: 'js/libs/mathjax', context: mathjaxDir },
  264. {
  265. from: 'fonts/HTML-CSS/TeX/woff/*',
  266. to: 'js/libs/mathjax',
  267. context: mathjaxDir,
  268. },
  269. {
  270. from: 'libs/sigma-master',
  271. to: 'js/libs/sigma-master',
  272. context: vendorDir,
  273. },
  274. {
  275. from: 'src-min-noconflict',
  276. to: `js/ace-${PackageVersions.version.ace}/`,
  277. context: aceDir,
  278. },
  279. ...pdfjsVersions.flatMap(version => {
  280. const dir = getModuleDirectory(version)
  281. // Copy CMap files (used to provide support for non-Latin characters)
  282. // and static images from pdfjs-dist package to build output.
  283. return [
  284. { from: `cmaps`, to: `js/${version}/cmaps`, context: dir },
  285. {
  286. from: `standard_fonts`,
  287. to: `fonts/${version}`,
  288. context: dir,
  289. },
  290. {
  291. from: `legacy/web/images`,
  292. to: `images/${version}`,
  293. context: dir,
  294. },
  295. ]
  296. }),
  297. ],
  298. }),
  299. ],
  300. }