forked from canalplus/rx-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
55 lines (51 loc) · 1.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
/* eslint-env node */
const path = require("path");
const RX_PLAYER_ENV = process.env.RX_PLAYER_ENV || "production";
if (["development", "production"].indexOf(RX_PLAYER_ENV) < 0) {
throw new Error("unknown RX_PLAYER_ENV " + RX_PLAYER_ENV);
}
const webpack = require("webpack");
module.exports = {
output: {
library: "RxPlayer",
libraryTarget: "umd",
},
module: {
loaders: [
{
test: /\.js$/,
loader: "babel",
query: {
"presets": ["es2015-loose"],
},
},
],
},
resolve: {
alias: {
main: __dirname + "/src",
test: __dirname + "/test",
},
},
plugins: [
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.DefinePlugin({
"__DEV__": RX_PLAYER_ENV === "development",
"process.env": {
NODE_ENV: JSON.stringify(RX_PLAYER_ENV),
},
}),
],
node: {
console: false,
global: true,
process: false,
Buffer: false,
__filename: false,
__dirname: false,
setImmediate: false,
},
resolveLoader: {
root: path.join(__dirname, "node_modules"),
},
};