-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
100 lines (97 loc) · 2.89 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
import * as path from 'path';
import { fileURLToPath } from 'url';
import webpack from 'webpack';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import { CleanWebpackPlugin } from 'clean-webpack-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
import 'dotenv/config';
import {
readmeApiExplorerTransformers,
relatedVisitorsApiTransformers,
removeExtraDocumentationTransformers,
schemaForSdksTransformers,
transformSchema,
} from './utils/transformers/transformSchema.js';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const outputPath = path.resolve(__dirname, 'dist');
export default {
mode: 'development',
entry: {
app: './src/index.ts',
},
resolve: {
extensions: ['.ts', '.js'],
},
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.yaml$/,
use: [
// { loader: 'json-loader' },
{ loader: 'yaml-loader' },
],
},
{
test: /\.css$/,
use: [{ loader: 'style-loader' }, { loader: 'css-loader' }],
},
],
},
plugins: [
new webpack.DefinePlugin({
'process.env.PRIVATE_KEY': JSON.stringify(process.env.PRIVATE_KEY),
}),
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [outputPath],
}),
new HtmlWebpackPlugin({
template: 'src/index.html',
}),
new CopyWebpackPlugin({
patterns: [
{
from: 'schemas/fingerprint-server-api-for-sdks.yaml',
to: 'schemas/fingerprint-server-api.yaml',
transform: (content) => transformSchema(content),
},
{
from: 'schemas/fingerprint-related-visitors-api-readme-explorer.yaml',
to: 'schemas/fingerprint-related-visitors-api-readme-explorer.yaml',
transform: (content) => transformSchema(content, relatedVisitorsApiTransformers),
},
{
from: 'schemas/fingerprint-server-api-readme-explorer.yaml',
to: 'schemas/fingerprint-server-api-readme-explorer.yaml',
transform: (content) => transformSchema(content, readmeApiExplorerTransformers),
},
{
from: 'schemas/fingerprint-server-api-for-sdks.yaml',
to: 'schemas/fingerprint-server-api-compact.yaml',
transform: (content) => transformSchema(content, removeExtraDocumentationTransformers),
},
{
from: 'schemas/fingerprint-server-api-for-sdks.yaml',
to: 'schemas/fingerprint-server-api-schema-for-sdks.yaml',
transform: (content) => transformSchema(content, schemaForSdksTransformers),
},
{
from: 'schemas/paths/examples',
to: 'examples',
},
{
from: 'res/favicon.ico',
},
],
}),
],
output: {
filename: '[name].bundle.js',
path: outputPath,
},
};