Skip to content

Commit 2df10c7

Browse files
committed
simplify commands and configs
1 parent 4cf6835 commit 2df10c7

File tree

4 files changed

+136
-119
lines changed

4 files changed

+136
-119
lines changed

.webpack/webpack.config.js

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
const path = require('path');
2+
const webpack = require('webpack');
3+
const autoprefixer = require('autoprefixer');
4+
// Plugins
5+
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
6+
.BundleAnalyzerPlugin;
7+
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
8+
9+
const ENTRY_VTK_EXT = path.join(__dirname, './../src/index.js');
10+
const SRC_PATH = path.join(__dirname, './../src');
11+
const OUT_PATH = path.join(__dirname, './../dist');
12+
13+
/**
14+
* `argv` are options from the CLI. They will override our config here if set.
15+
* `-d` - Development shorthand, sets `debug`, `devtool`, and `mode`
16+
* `-p` - Production shorthand, sets `minimize`, `NODE_ENV`, and `mode`
17+
*/
18+
module.exports = (env, argv) => {
19+
const isProdBuild = argv.mode !== 'development';
20+
const outputFilename = isProdBuild ? '[name].umd.min.js' : '[name].umd.js';
21+
22+
return {
23+
entry: {
24+
vtkViewport: ENTRY_VTK_EXT,
25+
},
26+
devtool: 'source-map',
27+
output: {
28+
path: OUT_PATH,
29+
filename: outputFilename,
30+
library: 'VTKViewport',
31+
libraryTarget: 'umd',
32+
globalObject: 'this',
33+
},
34+
module: {
35+
rules: [
36+
{
37+
test: /\.(js|jsx)$/,
38+
exclude: /node_modules/,
39+
use: ['babel-loader'],
40+
},
41+
{
42+
test: /\.css$/,
43+
exclude: /\.module\.css$/,
44+
use: [
45+
'style-loader',
46+
'css-loader',
47+
{
48+
loader: 'postcss-loader',
49+
options: {
50+
plugins: () => [autoprefixer('last 2 version', 'ie >= 10')],
51+
},
52+
},
53+
],
54+
},
55+
],
56+
},
57+
resolve: {
58+
modules: [path.resolve(__dirname, './../node_modules'), SRC_PATH],
59+
},
60+
externals: [
61+
// :wave:
62+
/\b(vtk.js)/,
63+
// Used to build/load metadata
64+
{
65+
'cornerstone-core': {
66+
commonjs: 'cornerstone-core',
67+
commonjs2: 'cornerstone-core',
68+
amd: 'cornerstone-core',
69+
root: 'cornerstone',
70+
},
71+
// Vector 3 use
72+
'cornerstone-math': {
73+
commonjs: 'cornerstone-math',
74+
commonjs2: 'cornerstone-math',
75+
amd: 'cornerstone-math',
76+
root: 'cornerstoneMath',
77+
},
78+
//
79+
react: 'react',
80+
},
81+
],
82+
node: {
83+
// https://github.com/webpack-contrib/style-loader/issues/200
84+
Buffer: false,
85+
},
86+
plugins: [
87+
// Uncomment to generate bundle analyzer
88+
// new BundleAnalyzerPlugin(),
89+
// Show build progress
90+
new webpack.ProgressPlugin(),
91+
// Clear dist between builds
92+
// new CleanWebpackPlugin(),
93+
],
94+
};
95+
};

webpack.dev-server.js .webpack/webpack.dev.js

+32-27
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,44 @@
11
/**
22
* vtkRules contains three rules:
3-
*
3+
*
44
* - shader-loader
55
* - babel-loader
66
* - 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+
* },
922
*/
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-
// },
1923

20-
const path = require('path')
21-
const webpack = require('webpack')
24+
const path = require('path');
25+
const webpack = require('webpack');
2226
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;
2429
// Plugins
2530
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
2631
const CopyWebpackPlugin = require('copy-webpack-plugin');
2732
const HtmlWebpackPlugin = require('html-webpack-plugin');
2833

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');
3338

3439
module.exports = {
3540
entry: {
36-
examples: ENTRY_EXAMPLES
41+
examples: ENTRY_EXAMPLES,
3742
},
3843
devtool: 'source-map',
3944
output: {
@@ -67,10 +72,10 @@ module.exports = {
6772
].concat(vtkRules),
6873
},
6974
resolve: {
70-
modules: [path.resolve(__dirname, 'node_modules'), SRC_PATH],
75+
modules: [path.resolve(__dirname, './../node_modules'), SRC_PATH],
7176
alias: {
72-
'@vtk-viewport': ENTRY_VTK_EXT
73-
}
77+
'@vtk-viewport': ENTRY_VTK_EXT,
78+
},
7479
},
7580
plugins: [
7681
// Show build progress
@@ -80,12 +85,12 @@ module.exports = {
8085
// Generate `index.html` with injected build assets
8186
new HtmlWebpackPlugin({
8287
filename: 'index.html',
83-
template: path.resolve(__dirname, 'public', 'index.html'),
88+
template: path.resolve(__dirname, '..', 'public', 'index.html'),
8489
}),
8590
// Copy "Public" Folder to Dist (test data)
8691
new CopyWebpackPlugin([
8792
{
88-
from: path.resolve(__dirname, 'public'),
93+
from: path.resolve(__dirname, '..', 'public'),
8994
to: OUT_PATH,
9095
toType: 'dir',
9196
ignore: ['index.html', '.DS_Store'],
@@ -99,5 +104,5 @@ module.exports = {
99104
open: true,
100105
port: 3000,
101106
historyApiFallback: true,
102-
}
103-
}
107+
},
108+
};

package.json

+9-12
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,22 @@
1111
"npm": ">=5"
1212
},
1313
"scripts": {
14-
"build": "webpack --progress --colors --mode development",
15-
"build:release": "webpack --progress --colors --mode production",
16-
"dev": "webpack-dev-server --config ./webpack.dev-server.js --watch",
14+
"build": "webpack --progress --colors --config ./.webpack/webpack.config.js -d",
15+
"build:release": "webpack --progress --colors --config ./.webpack/webpack.config.js -p",
16+
"dev": "webpack-dev-server --config ./webpack.dev.js --watch",
1717
"start": "yarn run dev",
1818
"predeploy": "cd example && yarn install && yarn run build:release",
19-
"prepublishOnly": "yarn run build:release",
19+
"prepublishOnly": "yarn run build && yarn run build:release",
2020
"deploy": "gh-pages -d example/build",
2121
"generateStaticSite": "./generateStaticSite.sh"
2222
},
2323
"peerDependencies": {
2424
"react": "^16.8.6",
2525
"react-dom": "^16.8.6"
2626
},
27+
"dependencies": {
28+
"date-fns": "^2.2.1"
29+
},
2730
"devDependencies": {
2831
"@babel/core": "^7.4.5",
2932
"@babel/plugin-external-helpers": "^7.2.0",
@@ -87,19 +90,13 @@
8790
"git add"
8891
]
8992
},
90-
"eslintConfig": {
91-
"extends": "react-app"
92-
},
9393
"browserslist": [
9494
">0.2%",
9595
"not dead",
96-
"not ie <= 11",
96+
"not ie < 11",
9797
"not op_mini all"
9898
],
9999
"files": [
100100
"dist"
101-
],
102-
"dependencies": {
103-
"date-fns": "^2.2.1"
104-
}
101+
]
105102
}

webpack.config.js

-80
This file was deleted.

0 commit comments

Comments
 (0)