File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ Go to the `v1` branch to see the changelog of Lume 1.
21
21
- Remove empty directories in ` dest ` folder.
22
22
- Watcher new files on Windows.
23
23
- Feed plugin: error when the updated/published value is a string [ #638 ] .
24
+ - Fixed esbuild reload [ #647 ] .
24
25
25
26
## [ 2.2.4] - 2024-07-18
26
27
### Added
@@ -469,6 +470,7 @@ Go to the `v1` branch to see the changelog of Lume 1.
469
470
[ #633 ] : https://github.com/lumeland/lume/issues/633
470
471
[ #634 ] : https://github.com/lumeland/lume/issues/634
471
472
[ #638 ] : https://github.com/lumeland/lume/issues/638
473
+ [ #647 ] : https://github.com/lumeland/lume/issues/647
472
474
473
475
[ Unreleased ] : https://github.com/lumeland/lume/compare/v2.2.4...HEAD
474
476
[ 2.2.4 ] : https://github.com/lumeland/lume/compare/v2.2.3...v2.2.4
Original file line number Diff line number Diff line change @@ -111,12 +111,13 @@ export function esbuild(userOptions?: Options) {
111
111
site . addEventListener ( "beforeSave" , stop ) ;
112
112
113
113
/** Run esbuild and returns the output files */
114
+ const entryContent : Record < string , string > = { } ;
115
+
114
116
async function runEsbuild (
115
117
pages : Page [ ] ,
116
118
extraOptions : BuildOptions = { } ,
117
119
) : Promise < [ OutputFile [ ] , boolean ] > {
118
120
let enableAllSourceMaps = false ;
119
- const entryContent : Record < string , string > = { } ;
120
121
const entryPoints : string [ ] = [ ] ;
121
122
122
123
pages . forEach ( ( page ) => {
You can’t perform that action at this time.
0 commit comments