Skip to content

Commit db1c12e

Browse files
committed
style(build): add periods to esbuild config comments
Added periods to comment endings per code style guidelines.
1 parent 5fbdd90 commit db1c12e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.config/esbuild.config.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -238,18 +238,18 @@ export const buildConfig = {
238238
platform: 'node',
239239
target: 'node18',
240240
sourcemap: true,
241-
// Don't minify - this is a library and minification breaks ESM/CJS interop
241+
// Don't minify - this is a library and minification breaks ESM/CJS interop.
242242
minify: false,
243-
// Tree-shaking optimization
243+
// Tree-shaking optimization.
244244
treeShaking: true,
245245
metafile: true,
246246
logLevel: 'info',
247247

248-
// Use plugin for local package aliases (built-in alias requires bundle: true)
248+
// Use plugin for local package aliases (built-in alias requires bundle: true).
249249
plugins: [createPathShorteningPlugin(), createAliasPlugin()].filter(Boolean),
250250

251-
// Note: Cannot use "external" with bundle: false
252-
// esbuild automatically treats all imports as external when not bundling
251+
// Note: Cannot use "external" with bundle: false.
252+
// esbuild automatically treats all imports as external when not bundling.
253253

254254
// Define constants for optimization
255255
define: {

0 commit comments

Comments
 (0)