Reducing rebuild time with Broccoli Caching Writer

· 2 min read

We use the ember-bundle-i18n package to perform i18n of our SPA.

One thing that I noticed over time was how this addon was always being printed in the build timing log printed by Ember-CLI on each rebuild. Now the size of our i18n files were huge and it made sense that they took some time. However, rebuilding these for every single change(like JS or CSS) in our app was unnecessary.

While looking around for options, I came across the broccoli-caching-writer package that acts as a drop-in-replacement for broccoli-plugin.

Using this, one can specify what files can trigger a rebuild and what files cannot trigger rebuilds.

For example,

options: {
  cacheInclude: [
    /.properties$/
  ]
}

will only trigger rebuilds when .properties files are changed. This is exactly what we wanted!

I submitted a PR and after this, our rebuilds got a second or so faster.


RSS FeedTwitterGitHubEmailToggle Dark Mode OnToggle Dark Mode OffLink