Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit 96a9c95

Browse files
committed
Fix updating build manifest
1 parent adec713 commit 96a9c95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/aleph.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export class Aleph implements IAleph {
157157
(v.importMap !== importMapString && confirm('The import-maps has been changed, clean build cache?')) ||
158158
(v.plugins !== pluginNames && confirm('The plugin list has been updated, clean build cache?'))
159159
)
160-
if (!shouldRebuild && v.importMap !== importMapString) {
160+
if (!shouldRebuild && v.importMap !== importMapString && v.plugins !== pluginNames) {
161161
saveManifestFile = true
162162
}
163163
} catch (e) { }

0 commit comments

Comments
 (0)