1
1
/**
2
2
* vtkRules contains three rules:
3
- *
3
+ *
4
4
* - shader-loader
5
5
* - babel-loader
6
6
* - worker-loader
7
- *
8
- * The defaults work fine for us here, but it's worth noting that...
7
+ *
8
+ * The defaults work fine for us here, but it's worth noting that for a UMD build,
9
+ * we would like likely want to inline web workers. An application consuming this package
10
+ * will likely want to use a non-default loader option:
11
+ *
12
+ * {
13
+ * test: /\.worker\.js$/,
14
+ * include: /vtk\.js[\/\\]Sources/,
15
+ * use: [
16
+ * {
17
+ * loader: 'worker-loader',
18
+ * options: { inline: true, fallback: false },
19
+ * },
20
+ * ],
21
+ * },
9
22
*/
10
- // test: /\.worker\.js$/,
11
- // include: /vtk\.js[\/\\]Sources/,
12
- // use: [
13
- // {
14
- // loader: 'worker-loader',
15
- // options: { inline: true, fallback: false },
16
- // },
17
- // ],
18
- // },
19
23
20
- const path = require ( 'path' )
21
- const webpack = require ( 'webpack' )
24
+ const path = require ( 'path' ) ;
25
+ const webpack = require ( 'webpack' ) ;
22
26
const autoprefixer = require ( 'autoprefixer' ) ;
23
- const vtkRules = require ( 'vtk.js/Utilities/config/dependency.js' ) . webpack . core . rules ;
27
+ const vtkRules = require ( 'vtk.js/Utilities/config/dependency.js' ) . webpack . core
28
+ . rules ;
24
29
// Plugins
25
30
const { CleanWebpackPlugin } = require ( 'clean-webpack-plugin' ) ;
26
31
const CopyWebpackPlugin = require ( 'copy-webpack-plugin' ) ;
27
32
const HtmlWebpackPlugin = require ( 'html-webpack-plugin' ) ;
28
33
29
- const ENTRY_VTK_EXT = path . join ( __dirname , './src/index.js' )
30
- const ENTRY_EXAMPLES = path . join ( __dirname , './examples/index.js' )
31
- const SRC_PATH = path . join ( __dirname , './src' )
32
- const OUT_PATH = path . join ( __dirname , './dist' )
34
+ const ENTRY_VTK_EXT = path . join ( __dirname , './../ src/index.js' ) ;
35
+ const ENTRY_EXAMPLES = path . join ( __dirname , './../ examples/index.js' ) ;
36
+ const SRC_PATH = path . join ( __dirname , './../ src' ) ;
37
+ const OUT_PATH = path . join ( __dirname , './../ dist' ) ;
33
38
34
39
module . exports = {
35
40
entry : {
36
- examples : ENTRY_EXAMPLES
41
+ examples : ENTRY_EXAMPLES ,
37
42
} ,
38
43
devtool : 'source-map' ,
39
44
output : {
@@ -67,10 +72,10 @@ module.exports = {
67
72
] . concat ( vtkRules ) ,
68
73
} ,
69
74
resolve : {
70
- modules : [ path . resolve ( __dirname , 'node_modules' ) , SRC_PATH ] ,
75
+ modules : [ path . resolve ( __dirname , './../ node_modules' ) , SRC_PATH ] ,
71
76
alias : {
72
- '@vtk-viewport' : ENTRY_VTK_EXT
73
- }
77
+ '@vtk-viewport' : ENTRY_VTK_EXT ,
78
+ } ,
74
79
} ,
75
80
plugins : [
76
81
// Show build progress
@@ -80,12 +85,12 @@ module.exports = {
80
85
// Generate `index.html` with injected build assets
81
86
new HtmlWebpackPlugin ( {
82
87
filename : 'index.html' ,
83
- template : path . resolve ( __dirname , 'public' , 'index.html' ) ,
88
+ template : path . resolve ( __dirname , '..' , ' public', 'index.html' ) ,
84
89
} ) ,
85
90
// Copy "Public" Folder to Dist (test data)
86
91
new CopyWebpackPlugin ( [
87
92
{
88
- from : path . resolve ( __dirname , 'public' ) ,
93
+ from : path . resolve ( __dirname , '..' , ' public') ,
89
94
to : OUT_PATH ,
90
95
toType : 'dir' ,
91
96
ignore : [ 'index.html' , '.DS_Store' ] ,
@@ -99,5 +104,5 @@ module.exports = {
99
104
open : true ,
100
105
port : 3000 ,
101
106
historyApiFallback : true ,
102
- }
103
- }
107
+ } ,
108
+ } ;
0 commit comments