webpack.config.common.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. const path = require('path');
  2. const webpack = require('webpack');
  3. const ExtraWatchWebpackPlugin = require('extra-watch-webpack-plugin');
  4. const MiniCssExtractPlugin = require('mini-css-extract-plugin');
  5. const VersionFile = require('webpack-version-file-plugin');
  6. const sharedConfig = {
  7. module: {
  8. rules: [
  9. {
  10. test: /\.(html|ico)$/,
  11. use: [{
  12. loader: 'file-loader',
  13. options: { name: '[name].[ext]' }
  14. }]
  15. },
  16. {
  17. test: /\.(s*)css$/,
  18. use: [
  19. MiniCssExtractPlugin.loader,
  20. { loader: 'css-loader', options: { sourceMap: false } },
  21. { loader: 'sass-loader', options: { sourceMap: false } },
  22. ]
  23. }
  24. ]
  25. },
  26. plugins: [
  27. new ExtraWatchWebpackPlugin({
  28. files: [
  29. './lib/**/*.scss',
  30. './lib/**/*.html'
  31. ],
  32. }),
  33. new webpack.DefinePlugin({
  34. 'process.env.DEBUG': JSON.stringify(process.env.DEBUG),
  35. '__MOLSTAR_DEBUG_TIMESTAMP__': webpack.DefinePlugin.runtimeValue(() => `${new Date().valueOf()}`, true)
  36. }),
  37. new MiniCssExtractPlugin({ filename: 'molstar.css', }),
  38. new VersionFile({
  39. extras: { timestamp: `${new Date().valueOf()}` },
  40. packageFile: path.resolve(__dirname, 'package.json'),
  41. templateString: `export const PLUGIN_VERSION = '<%= package.version %>';\nexport const PLUGIN_VERSION_DATE = new Date(typeof __MOLSTAR_DEBUG_TIMESTAMP__ !== 'undefined' ? __MOLSTAR_DEBUG_TIMESTAMP__ : <%= extras.timestamp %>);`,
  42. outputFile: path.resolve(__dirname, 'lib/mol-plugin/version.js')
  43. })
  44. ],
  45. resolve: {
  46. modules: [
  47. 'node_modules',
  48. path.resolve(__dirname, 'lib/')
  49. ],
  50. },
  51. watchOptions: {
  52. aggregateTimeout: 750
  53. },
  54. devtool: ''
  55. };
  56. function createEntry(src, outFolder, outFilename, isNode) {
  57. return {
  58. node: isNode ? void 0 : { fs: 'empty' }, // TODO find better solution? Currently used in file-handle.ts
  59. target: isNode ? 'node' : void 0,
  60. entry: path.resolve(__dirname, `lib/${src}.js`),
  61. output: { filename: `${outFilename}.js`, path: path.resolve(__dirname, `build/${outFolder}`) },
  62. ...sharedConfig
  63. };
  64. }
  65. function createEntryPoint(name, dir, out, library) {
  66. return {
  67. node: { fs: 'empty' }, // TODO find better solution? Currently used in file-handle.ts
  68. entry: path.resolve(__dirname, `lib/${dir}/${name}.js`),
  69. output: { filename: `${library || name}.js`, path: path.resolve(__dirname, `build/${out}`), library: library || out, libraryTarget: 'umd' },
  70. ...sharedConfig
  71. };
  72. }
  73. function createNodeEntryPoint(name, dir, out) {
  74. return {
  75. target: 'node',
  76. entry: path.resolve(__dirname, `lib/${dir}/${name}.js`),
  77. output: { filename: `${name}.js`, path: path.resolve(__dirname, `build/${out}`) },
  78. externals: {
  79. argparse: 'require("argparse")',
  80. 'node-fetch': 'require("node-fetch")',
  81. 'util.promisify': 'require("util.promisify")',
  82. xhr2: 'require("xhr2")',
  83. },
  84. ...sharedConfig
  85. };
  86. }
  87. function createApp(name, library) { return createEntryPoint('index', `apps/${name}`, name, library); }
  88. function createExample(name) { return createEntry(`examples/${name}/index`, `examples/${name}`, 'index'); }
  89. function createBrowserTest(name) { return createEntryPoint(name, 'tests/browser', 'tests'); }
  90. function createNodeApp(name) { return createNodeEntryPoint('index', `apps/${name}`, name); }
  91. module.exports = {
  92. createApp,
  93. createEntry,
  94. createExample,
  95. createBrowserTest,
  96. createNodeEntryPoint,
  97. createNodeApp
  98. };