-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathwebpack.config.codemirror.js
More file actions
47 lines (41 loc) · 1.17 KB
/
webpack.config.codemirror.js
File metadata and controls
47 lines (41 loc) · 1.17 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
import path, {dirname} from 'node:path';
import {fileURLToPath} from 'node:url';
import process from 'node:process';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const dir = './codemirror';
const {env} = process;
const isDev = env.NODE_ENV === 'development';
const dist = path.resolve(__dirname, 'dist');
const distDev = path.resolve(__dirname, 'dist-dev');
const devtool = isDev ? 'eval' : 'source-map';
const notEmpty = (a) => a;
const clean = (array) => array.filter(notEmpty);
const rules = clean([
!isDev && {
test: /\.js$/,
loader: 'babel-loader',
},
]);
export default {
devtool,
entry: {
CodeMirror: `${dir}/codemirror.js`,
},
output: {
library: 'CodeMirror',
filename: 'codemirror.js',
path: isDev ? distDev : dist,
pathinfo: isDev,
libraryTarget: 'var',
libraryExport: 'default',
devtoolModuleFilenameTemplate,
},
module: {
rules,
},
};
function devtoolModuleFilenameTemplate(info) {
const resource = info.absoluteResourcePath.replace(__dirname + path.sep, '');
return `file://codemirror/${resource}`;
}