forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.embedding-sdk-cli.config.js
56 lines (52 loc) · 1.36 KB
/
webpack.embedding-sdk-cli.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
const path = require("path");
const webpack = require("webpack");
const TerserPlugin = require("terser-webpack-plugin");
const SDK_CLI_DIST_PATH = path.join(__dirname, "/resources/embedding-sdk/dist");
const SDK_SRC_PATH = __dirname + "/enterprise/frontend/src/embedding-sdk";
const SDK_CLI_PATH = path.join(
__dirname,
"/enterprise/frontend/src/embedding-sdk/cli",
);
const METABASE_SRC_PATH = path.join(__dirname, "/frontend/src/metabase");
const BABEL_CONFIG = {
cacheDirectory: process.env.BABEL_DISABLE_CACHE ? false : ".babel_cache",
};
module.exports = {
mode: "production",
entry: `${SDK_CLI_PATH}/cli.ts`,
target: "node",
context: SDK_CLI_PATH,
output: {
path: SDK_CLI_DIST_PATH,
filename: "cli.js",
library: { type: "commonjs2" },
},
resolve: {
extensions: [".ts", ".js"],
alias: {
metabase: METABASE_SRC_PATH,
"embedding-sdk": SDK_SRC_PATH,
},
},
module: {
rules: [
{
test: /\.(ts|js)$/,
exclude: /node_modules/,
use: [{ loader: "babel-loader", options: BABEL_CONFIG }],
},
],
},
plugins: [
new webpack.BannerPlugin({ banner: "#!/usr/bin/env node", raw: true }),
],
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: { output: { comments: false } },
extractComments: false,
}),
],
},
};