webpack.config.js 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 sharedConfig = {
  6. module: {
  7. rules: [
  8. {
  9. test: /\.(html|ico)$/,
  10. use: [{
  11. loader: 'file-loader',
  12. options: { name: '[name].[ext]' }
  13. }]
  14. },
  15. {
  16. test: /\.(s*)css$/,
  17. use: [
  18. MiniCssExtractPlugin.loader,
  19. { loader: 'css-loader', options: { sourceMap: false } },
  20. { loader: 'sass-loader', options: { sourceMap: false } },
  21. ]
  22. }
  23. ]
  24. },
  25. plugins: [
  26. new ExtraWatchWebpackPlugin({
  27. files: [
  28. './build/**/*.scss',
  29. './build/**/*.html'
  30. ],
  31. }),
  32. new webpack.DefinePlugin({
  33. __BUILD_TIMESTAMP__: webpack.DefinePlugin.runtimeValue(() => `${new Date().valueOf()}`, true),
  34. __RCSB_MOLSTAR_VERSION__: webpack.DefinePlugin.runtimeValue(() => JSON.stringify(require('./package.json').version), true),
  35. 'process.env.DEBUG': JSON.stringify(process.env.DEBUG)
  36. }),
  37. new MiniCssExtractPlugin({ filename: 'rcsb-molstar.css' })
  38. ],
  39. resolve: {
  40. modules: [
  41. 'node_modules',
  42. path.resolve(__dirname, 'build/src/')
  43. ],
  44. fallback: {
  45. fs: false,
  46. buffer: require.resolve('buffer'),
  47. crypto: require.resolve('crypto-browserify'),
  48. path: require.resolve('path-browserify'),
  49. stream: require.resolve('stream-browserify')
  50. }
  51. },
  52. watchOptions: {
  53. aggregateTimeout: 750
  54. },
  55. devtool: false
  56. };
  57. module.exports = [
  58. {
  59. entry: path.resolve(__dirname, `build/src/viewer/index.js`),
  60. output: {
  61. library: 'rcsbMolstar',
  62. libraryTarget: 'umd',
  63. filename: `rcsb-molstar.js`,
  64. path: path.resolve(__dirname, `build/dist/viewer`)
  65. },
  66. ...sharedConfig
  67. },{
  68. entry: path.resolve(__dirname, `build/src/viewer/assets.js`),
  69. output: {
  70. path: path.resolve(__dirname, `build/dist/viewer`)
  71. },
  72. ...sharedConfig
  73. }
  74. ];