forked from aws/aws-toolkit-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
156 lines (147 loc) · 4.64 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*!
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
//@ts-check
'use strict'
const path = require('path')
const glob = require('glob')
const webpack = require('webpack')
const { ESBuildMinifyPlugin } = require('esbuild-loader')
const fs = require('fs')
const { NLSBundlePlugin } = require('vscode-nls-dev/lib/webpack-bundler')
const CircularDependencyPlugin = require('circular-dependency-plugin')
const packageJsonFile = path.join(__dirname, 'package.json')
const packageJson = JSON.parse(fs.readFileSync(packageJsonFile, 'utf8'))
const packageId = `${packageJson.publisher}.${packageJson.name}`
const { VueLoaderPlugin } = require('vue-loader')
/**@type {import('webpack').Configuration}*/
const baseConfig = {
name: 'main',
target: 'node',
entry: {
'src/main': './src/main.ts',
'src/stepFunctions/asl/aslServer': './src/stepFunctions/asl/aslServer.ts',
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
libraryTarget: 'commonjs2',
devtoolModuleFilenameTemplate: '../[resource-path]',
},
devtool: 'source-map',
externals: {
vscode: 'commonjs vscode',
vue: 'root Vue',
},
resolve: {
extensions: ['.ts', '.js'],
},
node: {
__dirname: false, //preserve the default node.js behavior for __dirname
},
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules|testFixtures/,
use: [
{
loader: 'vscode-nls-dev/lib/webpack-loader',
options: {
base: path.join(__dirname, 'src'),
},
},
{
loader: 'esbuild-loader',
options: {
loader: 'ts',
target: 'es2018',
},
},
],
},
{
test: /node_modules[\\|/](amazon-states-language-service|vscode-json-languageservice)/,
use: { loader: 'umd-compat-loader' },
},
],
},
plugins: [
new NLSBundlePlugin(packageId),
new webpack.DefinePlugin({
EXTENSION_VERSION: JSON.stringify(packageJson.version),
}),
new CircularDependencyPlugin({
exclude: /node_modules|testFixtures/,
failOnError: true,
}),
],
optimization: {
minimize: true,
minimizer: [
new ESBuildMinifyPlugin({
target: 'es2018',
}),
],
},
}
/**
* Renames all Vue entry files to be `index`, located within the same directory.
* Example: `src/lambda/vue/index.ts` -> `dist/src/lambda/vue/index.js`
* @param {string} file
*/
const createVueBundleName = file => {
return path.relative(__dirname, file).split('.').slice(0, -1).join(path.sep)
}
/**
* Generates Vue entry points if the filename is matches `targetPattern` (default: index.ts)
* and is under a `vue` directory.
*/
const createVueEntries = (targetPattern = 'index.ts') => {
return glob
.sync(path.resolve(__dirname, 'src', '**', 'vue', '**', targetPattern))
.map(f => ({ name: createVueBundleName(f), path: f }))
.reduce((a, b) => ((a[b.name] = b.path), a), {})
}
const vueConfig = {
...baseConfig,
name: 'vue',
target: 'web',
entry: createVueEntries(),
output: {
...baseConfig.output,
libraryTarget: 'this',
},
module: {
rules: baseConfig.module.rules.concat(
{
test: /\.vue$/,
loader: 'vue-loader',
},
{
test: /\.css$/,
use: ['vue-style-loader', 'css-loader'],
}
),
},
plugins: baseConfig.plugins.concat(new VueLoaderPlugin()),
}
const vueHotReload = {
...vueConfig,
name: 'vue-hmr',
devServer: {
static: {
directory: path.resolve(__dirname, 'dist'),
},
// This is not ideal, but since we're only running the server locally it's not too bad
// The webview debugger tries to establish a websocket with a GUID as its origin, so not much of a workaround
allowedHosts: 'all',
},
// Normally we want to exclude Vue from the bundle, but for hot reloads we need it
externals: {
vscode: 'commonjs vscode',
},
}
module.exports =
process.env.npm_lifecycle_event === 'serve' ? [baseConfig, vueConfig, vueHotReload] : [baseConfig, vueConfig]