-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.js
80 lines (69 loc) · 1.86 KB
/
webpack.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
const webpack = require('webpack');
const path = require('path');
/**
* @type {import('webpack').Configuration}
*/
module.exports = {
target: 'node',
mode: 'development',
entry: {
'slack-cli': './src/entry.ts',
'slash-command': './src/slash-commands/index.ts',
},
output: {
clean: true,
filename: '[name].bundle.js',
path: `${__dirname}/dist`,
},
externals: [
// package.json はビルドファイルには含めず外部ファイルとして読み込む
// パスはビルド後のファイル構造を考慮する
({ request }, callback) => {
// if (/package\.json$/.test(request)) {
// callback(null, 'commonjs ../../package.json');
// } else {
callback();
// }
},
// require("node:<package>") に対応していない node バージョンのために、
// require("<package>") に変換する
({ request }, callback) => {
const module = request.match(/^node:(.+)/)?.[1];
if (module) {
callback(null, `commonjs ${module}`);
} else {
callback();
}
},
// Do not include the sqlite3 binary file
{
sqlite3: 'commonjs sqlite3',
},
],
resolve: {
extensions: ['.js', '.ts', '.json'],
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: {
loader: 'ts-loader',
options: {
configFile: path.resolve(__dirname, 'tsconfig.json'),
},
},
},
],
},
plugins: [
// ビルドファイルの先頭に shebang を追加する
new webpack.BannerPlugin({ banner: '#!/usr/bin/env node', raw: true }),
// 出力先のファイルを`slack-cli.js`のみにするための設定
new webpack.optimize.LimitChunkCountPlugin({ maxChunks: 1 }),
],
};