-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathwebpack.web.js
executable file
·62 lines (59 loc) · 1.69 KB
/
webpack.web.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
'use strict';
const path = require('path');
const { merge } = require('webpack-merge');
const commonConfig = require('./webpack.common.js');
const webpack = require('webpack');
module.exports = function(options) {
return merge(commonConfig(), {
output: {
library: "Contentstack",
libraryTarget: "umd",
path: path.join(__dirname, "../dist/web"),
filename: "contentstack.js"
},
resolve: {
alias: {
runtime: path.resolve(__dirname, '../src/runtime/web')
},
modules: [
'../src',
'../src/runtimes/web',
'node_modules'
]
},
module: {
rules: [{
test: /\.js?$/,
exclude: '/node_modules/',
use: [
{
loader: 'babel-loader',
options: {
presets: [['@babel/preset-env', {
modules: "commonjs"
}]],
}
},
{
loader: 'string-replace-loader',
options: {
search: '{{PLATFORM}}',
replace: 'web'
}
}
],
}]
},
node: {
global: false
},
plugins: [
new webpack.ProvidePlugin({
global: require.resolve('./../global.js')
})
],
optimization: {
minimize: true,
},
});
}