webpack.config.common.js 3.7 KB

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