-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathwebpack-common.config.js
More file actions
141 lines (129 loc) · 3.93 KB
/
Copy pathwebpack-common.config.js
File metadata and controls
141 lines (129 loc) · 3.93 KB
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
const fs = require('fs');
const path = require('path');
const { DefinePlugin } = require('webpack');
const {
getNextVersion,
packageLoaderRules: { aliasMap: alias, tsSrcPackages },
} = require('./scripts/webpack');
const libraryName = 'checkoutKit';
const coreSrcPath = path.join(__dirname, 'packages/core/src');
const hostedFormV2SrcPath = path.join(__dirname, 'packages/hosted-form-v2/src');
const libraryEntries = {
'checkout-sdk': path.join(coreSrcPath, 'bundles', 'checkout-sdk.ts'),
'checkout-button': path.join(coreSrcPath, 'bundles', 'checkout-button.ts'),
'wallet-button': path.join(coreSrcPath, 'bundles', 'wallet-button.ts'),
'embedded-checkout': path.join(coreSrcPath, 'bundles', 'embedded-checkout.ts'),
extension: path.join(coreSrcPath, 'bundles', 'extension.ts'),
'hosted-form': path.join(coreSrcPath, 'bundles', 'hosted-form.ts'),
'internal-mappers': path.join(coreSrcPath, 'bundles', 'internal-mappers.ts'),
'hosted-form-v2-iframe-content': path.join(
hostedFormV2SrcPath,
'bundles',
'hosted-form-v2-iframe-content.ts',
),
'hosted-form-v2-iframe-host': path.join(
hostedFormV2SrcPath,
'bundles',
'hosted-form-v2-iframe-host.ts',
),
...getIntegrationEntries(),
};
async function getBaseConfig(_options, argv = {}) {
const libraryVersion = await getNextVersion();
return {
cache: {
type: 'filesystem',
buildDependencies: {
config: [__filename],
},
version: libraryVersion,
},
stats: {
errorDetails: true,
logging: 'verbose',
},
devtool: 'source-map',
mode: 'production',
resolve: {
extensions: ['.ts', '.js'],
alias,
},
module: {
rules: [
{
parser: {
amd: false,
},
},
{
test: /\.[tj]s$/,
enforce: 'pre',
loader: require.resolve('source-map-loader'),
},
...tsSrcPackages,
],
},
plugins: [
new DefinePlugin({
LIBRARY_VERSION: JSON.stringify(libraryVersion),
'process.env.NODE_ENV': JSON.stringify(
process.env.NODE_ENV || argv.mode || 'production',
),
'process.env.ESSENTIAL_BUILD': JSON.stringify(
process.env.ESSENTIAL_BUILD || argv.essentialBuild || false,
),
}),
],
};
}
function getIntegrationEntries() {
const integrationsPath = path.join(coreSrcPath, 'generated', 'integrations');
const integrationFolders = {};
fs.readdirSync(integrationsPath)
.filter((file) => {
return fs.statSync(path.join(integrationsPath, file)).isDirectory();
})
.forEach((folder) => {
integrationFolders[`integrations/${folder}`] = path.join(
integrationsPath,
folder,
'index.ts',
);
});
return integrationFolders;
}
const babelEnvPreset = [
'@babel/preset-env',
{
corejs: 3,
targets: ['defaults'],
useBuiltIns: 'usage',
},
];
const babelLoaderRules = [
{
test: /\.[tj]s$/,
loader: 'babel-loader',
include: coreSrcPath,
options: {
presets: [babelEnvPreset],
},
},
{
test: /\.js$/,
loader: 'babel-loader',
include: path.join(__dirname, 'node_modules'),
exclude: [/\/node_modules\/core-js\//, /\/node_modules\/webpack\//],
options: {
presets: [babelEnvPreset],
sourceType: 'unambiguous',
},
},
];
module.exports = {
babelLoaderRules,
getBaseConfig,
libraryEntries,
libraryName,
coreSrcPath,
};