forked from SonarSource/SonarJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathesbuild.mjs
More file actions
178 lines (176 loc) · 7.04 KB
/
esbuild.mjs
File metadata and controls
178 lines (176 loc) · 7.04 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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
* SonarQube JavaScript Plugin
* Copyright (C) 2011-2025 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the Sonar Source-Available License for more details.
*
* You should have received a copy of the Sonar Source-Available License
* along with this program; if not, see https://sonarsource.com/license/ssal/
*/
import esbuild from 'esbuild';
import textReplace from 'esbuild-plugin-text-replace';
import { copy } from 'esbuild-plugin-copy';
import { readFileSync } from 'node:fs';
const stylelintPkgJson = readFileSync('node_modules/stylelint/package.json', 'utf8');
await esbuild.build({
entryPoints: ['./server.mjs'],
outfile: './bin/server.cjs',
format: 'cjs',
bundle: true,
loader: {
'.json': 'copy',
},
// we mark this file as external because it does not exist on EsLint any more and in any case
// the code never reaches this dynamic require as this is a fallback if 'eslint/use-at-your-own-risk'
// does not exist. we need to keep an eye on this in the future.
external: ['eslint/lib/util/glob-util', 'jiti'],
platform: 'node',
minify: true,
plugins: [
textReplace({
include: /server\.mjs$/,
pattern: [['new URL(import.meta.url)', '__filename']],
}),
textReplace({
include: /lib[\/\\]jsts[\/\\]src[\/\\]parsers[\/\\]ast\.js$/,
pattern: [['path.dirname(fileURLToPath(import.meta.url))', '__dirname']],
}),
// Simplify the loader function in babel. At the end it's just importing Babel parser
// This matches the result of the TS compilation of the following lines
// https://github.com/babel/babel/blob/v7.25.1/eslint/babel-eslint-parser/src/parse.cts#L8-L12
textReplace({
include: /node_modules[\/\\]@babel[\/\\]eslint-parser[\/\\]lib[\/\\]parse\.cjs$/,
pattern: [
[/const babelParser = require.*}\)\)/gms, 'const babelParser = require("@babel/parser")'],
],
}),
// Remove dynamic import of espree on ESLint Rule tester. In any case, it's never used in the bundle
textReplace({
include: /node_modules[\/\\]eslint[\/\\]lib[\/\\]rule-tester[\/\\]rule-tester\.js$/,
pattern: [
// https://github.com/eslint/eslint/blob/v8.57.0/lib/rule-tester/rule-tester.js#L56
['const espreePath = require.resolve("espree");', ''],
// https://github.com/eslint/eslint/blob/v8.57.0/lib/rule-tester/rule-tester.js#L781
['config.parser = espreePath;', ''],
],
}),
// Remove dynamic import of unused stylelint extensions
textReplace({
include:
/node_modules[\/\\]postcss-html[\/\\]lib[\/\\]syntax[\/\\]build-syntax-resolver\.js$/,
pattern: [
['sugarss: () => require("sugarss"),', ''],
['"postcss-styl": () => require("postcss-styl"),', ''],
],
}),
// Remove createRequire from rolldown, used by tsdown, used by @stylistic
textReplace({
include: /node_modules[\/\\]@stylistic[\/\\]eslint-plugin[\/\\]dist[\/\\]vendor\.js$/,
pattern: [
[
'__importStar$4(__require("@eslint-community/eslint-utils"))',
'require("@eslint-community/eslint-utils")',
],
[
'__importStar$3(__require("@eslint-community/eslint-utils"))',
'require("@eslint-community/eslint-utils")',
],
[
'__importStar$2(__require("@eslint-community/eslint-utils"))',
'require("@eslint-community/eslint-utils")',
],
[
'__importStar$1(__require("@eslint-community/eslint-utils"))',
'require("@eslint-community/eslint-utils")',
],
[
'__importStar(__require("@eslint-community/eslint-utils"))',
'require("@eslint-community/eslint-utils")',
],
['__require("@typescript-eslint/types")', 'require("@typescript-eslint/types")'],
],
}),
// Remove createRequires
textReplace({
include:
/node_modules[\/\\]@stylistic[\/\\]eslint-plugin[\/\\]dist[\/\\]rolldown-runtime\.js$/,
pattern: [['createRequire(import.meta.url);', 'createRequire(__filename);']],
}),
textReplace({
include: /node_modules[\/\\]css-tree[\/\\]lib[\/\\]data-patch\.js$/,
pattern: [['const require = createRequire(import.meta.url);', '']],
}),
textReplace({
include: /node_modules[\/\\]css-tree[\/\\]lib[\/\\]data\.js$/,
pattern: [['const require = createRequire(import.meta.url);', '']],
}),
textReplace({
include: /node_modules[\/\\]css-tree[\/\\]lib[\/\\]version\.js$/,
pattern: [['const require = createRequire(import.meta.url);', '']],
}),
textReplace({
include: /node_modules[\/\\]stylelint[\/\\]lib[\/\\]utils[\/\\]mathMLTags\.mjs$/,
pattern: [['const require = createRequire(import.meta.url);', '']],
}),
// Dynamic import in module used by eslint-import-plugin. It always resolves to node resolver
textReplace({
include: /node_modules[\/\\]eslint-module-utils[\/\\]resolve\.js$/,
pattern: [
[
// https://github.com/import-js/eslint-plugin-import/blob/v2.11.0/utils/resolve.js#L157
'tryRequire(`eslint-import-resolver-${name}`, sourceFile)',
'require("eslint-import-resolver-node")',
],
],
}),
// The comparison by constructor name made by stylelint is not valid in the bundle because
// the Document object is named differently. We need to compare constructor object directly
textReplace({
include: /node_modules[\/\\]stylelint[\/\\]lib[\/\\]lintPostcssResult\.mjs$/,
pattern: [
[
"postcssDoc && postcssDoc.constructor.name === 'Document' ? postcssDoc.nodes : [postcssDoc]",
"postcssDoc && (postcssDoc instanceof require('postcss').Document) ? postcssDoc.nodes : [postcssDoc]",
],
],
}),
// do not let stylelint fs read its package.json
textReplace({
include: /node_modules[\/\\]stylelint[\/\\]lib[\/\\]utils[\/\\]FileCache.mjs$/,
pattern: [
[
"JSON.parse(readFileSync(new URL('../../package.json', import.meta.url), 'utf8'));",
stylelintPkgJson,
],
],
}),
copy({
resolveFrom: 'cwd',
assets: [
// We need to copy all typescript declaration files for type-checking, as typescript will
// look for those in the filesystem
{
from: ['./node_modules/typescript/lib/*.d.ts'],
to: ['./bin/'],
},
// We copy run-node into the bundle, as it's used from the java side on Mac
{
from: ['./run-node'],
to: ['./bin/'],
},
// We copy the protofile as it needs to be accessible for the bundle
{
from: ['./packages/jsts/src/parsers/estree.proto'],
to: ['./bin/'],
},
],
}),
],
});