webpack.config.js 10 KB

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