-
-
Notifications
You must be signed in to change notification settings - Fork 200
Closed as not planned
Labels
Status: Waiting FeedbackNeeds feedback from the authorNeeds feedback from the author
Description
Currently encore uses "inline-source-map" as devtool setting to create SourceMaps in Development mode. This type of SourceMap is slow in initial build and rebuild.
I suggest encore should use one of these 2 by default:
cheap-module-eval-source-map medium build speed and fast rebuild speed while providing mapping down to specific lines of the code
eval-source-map slow build speed (same as current type) and pretty fast rebuild speed while mapping down to the exact original source code
Here are some numbers to compare the 3 variants on my MacBook Pro with a 2.7 Core i7:
inline-source-map | ~30-40s | ~30-40s |
---|---|---|
cheap-module-eval-source-map | ~10s-15s | ~1s-3s |
eval-source-map | ~30-40s | ~0.5-1s |
seyfer, PaulOctopus, zhirzh, pscheit, nicooprat and 2 more
Metadata
Metadata
Assignees
Labels
Status: Waiting FeedbackNeeds feedback from the authorNeeds feedback from the author