-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
244 lines (236 loc) · 8.09 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
const path = require('path');
const fs = require('fs');
// werbpack plugin
const webpack = require('webpack');
const PowerBICustomVisualsWebpackPlugin = require('powerbi-visuals-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const Visualizer = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const ExtraWatchWebpackPlugin = require('extra-watch-webpack-plugin');
// api configuration
const powerbiApi = require('powerbi-visuals-api');
// visual configuration json path
const pbivizPath = './pbiviz.json';
const pbivizFile = require(path.join(__dirname, pbivizPath));
// the visual capabilities content
const capabilitiesPath = './capabilities.json';
const capabilitiesFile = require(path.join(__dirname, capabilitiesPath));
const pluginLocation = './.tmp/precompile/visualPlugin.ts'; // path to visual plugin file, the file generates by the plugin
// string resources
const resourcesFolder = path.join('.', 'stringResources');
const localizationFolders = fs.existsSync(resourcesFolder) && fs.readdirSync(resourcesFolder);
const statsLocation = '../../webpack.statistics.html';
// babel options to support IE11
let babelOptions = {
'presets': [
[
require.resolve('@babel/preset-env'),
{
useBuiltIns: 'entry',
corejs: 3,
modules: false,
},
],
],
plugins: [
[
require.resolve('babel-plugin-module-resolver'),
{
root: ['./'],
},
],
],
sourceType: 'unambiguous', // tell to babel that the project can contains different module types, not only es2015 modules
cacheDirectory: path.join('.tmp', 'babelCache'), // path for chace files
};
module.exports = {
entry: {
'visual': pluginLocation,
},
optimization: {
concatenateModules: false,
minimize: true, // enable minimization for create *.pbiviz file less than 2 Mb, can be disabled for dev mode
},
devtool: 'source-map',
mode: 'development',
module: {
rules: [
{
parser: {
amd: false,
},
},
{test: /webpack-dev-server\\client/, loader: 'null-loader'},
{
test: /(\.ts)x|\.ts$/,
use: [
{
loader: require.resolve('babel-loader'),
options: {
presets: ['@babel/env'],
plugins: [
[
require.resolve('babel-plugin-module-resolver'),
{
root: ['./'],
alias: {},
},
],
],
},
},
{
loader: require.resolve('ts-loader'),
options: {
transpileOnly: false,
experimentalWatchApi: false,
},
},
],
exclude: [/node_modules/],
include: /.tmp|powerbi-visuals-|src|precompile\\visualPlugin.ts/,
},
{
test: /(\.js)x|\.js$/,
use: [
{
loader: require.resolve('babel-loader'),
options: babelOptions,
},
],
exclude: [/node_modules/],
},
{
test: /\.json$/,
loader: require.resolve('json-loader'),
type: 'javascript/auto',
},
{
test: /\.less$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
{
loader: require.resolve('css-loader'),
},
{
loader: require.resolve('less-loader'),
options: {
lessOptions: {
paths: [path.resolve(__dirname, '..', 'node_modules')],
},
},
},
],
},
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
{
loader: require.resolve('css-loader'),
},
],
},
{
test: /\.(woff|ttf|ico|woff2|jpg|jpeg|png|webp|svg)$/i,
use: [
{
loader: 'base64-inline-loader',
},
],
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.jsx', '.js', '.css'],
alias: {},
},
output: {
publicPath: '/assets',
path: path.join(__dirname, '/.tmp', 'drop'),
library: +powerbiApi.version.replace(/\./g, '') >= 320 ? pbivizFile.visual.guid : undefined,
libraryTarget: +powerbiApi.version.replace(/\./g, '') >= 320 ? 'var' : undefined,
},
devServer: {
static: false,
compress: true,
port: 8080, // dev server port
hot: false,
liveReload: false,
https: {},
headers: {
'access-control-allow-origin': '*',
'cache-control': 'public, max-age=0',
},
},
externals: powerbiApi.version.replace(/\./g, '') >= 320 ?
{
'powerbi-visuals-api': 'null',
'fakeDefine': 'false',
} :
{
'powerbi-visuals-api': 'null',
'fakeDefine': 'false',
'corePowerbiObject': 'Function(\'return this.powerbi\')()',
'realWindow': 'Function(\'return this\')()',
},
plugins: [
new MiniCssExtractPlugin({
filename: 'visual.css',
chunkFilename: '[id].css',
}),
new Visualizer({
reportFilename: statsLocation,
openAnalyzer: false,
analyzerMode: `static`,
}),
// visual plugin regenerates with the visual source, but it does not require relaunching dev server
new webpack.WatchIgnorePlugin({
paths: [
path.join(__dirname, pluginLocation),
'./.tmp/**/*.*',
],
}),
// custom visuals plugin instance with options
new PowerBICustomVisualsWebpackPlugin({
...pbivizFile,
compression: 9,
capabilities: capabilitiesFile,
stringResources: localizationFolders && localizationFolders.map(localization => path.join(
resourcesFolder,
localization,
'resources.resjson',
)),
apiVersion: powerbiApi.version,
capabilitiesSchema: powerbiApi.schemas.capabilities,
pbivizSchema: powerbiApi.schemas.pbiviz,
stringResourcesSchema: powerbiApi.schemas.stringResources,
dependenciesSchema: powerbiApi.schemas.dependencies,
devMode: false,
generatePbiviz: true,
generateResources: true,
modules: true,
visualSourceLocation: '../../src/visual',
pluginLocation: pluginLocation,
packageOutPath: path.join(__dirname, 'dist'),
}),
new ExtraWatchWebpackPlugin({
files: [
pbivizPath,
capabilitiesPath,
],
}),
powerbiApi.version.replace(/\./g, '') >= 320 ?
new webpack.ProvidePlugin({
define: 'fakeDefine',
}) :
new webpack.ProvidePlugin({
window: 'realWindow',
define: 'fakeDefine',
powerbi: 'corePowerbiObject',
}),
],
};