prember 2.1.0 (minor)
- Chris Manson (@mansona)
BUGFIX: ensure we always run after ember-auto-import. As of ember-auto-import 2.0, things can break if we run before.
ENHANCEMENT: Add embroider support by @simonihmig
BUGFIX: Use rootUrl for static files #57 from @mansona
ENHANCEMENT: Allow passing urls from prember
ENHANCEMENT: Support to ember-engines out of the box
BUGFIX: The protocol bugfix in 1.0.1 was not quite right and caused a regresion.
BUGFIX: Shutdown express server after build (thanks @astronomersiva) BUGFIX: Add protocol to fastboot requests for improved compatibility (thanks @xg-wang)
BREAKING: We now require ember-cli-fastboot >= 2.0.0, and if you're using broccoli-asset-rev it should be >= 2.7.0. This is to fix the order in which these run relative to prember, so that all asset links will get correct handling.
BREAKING: the signature for custom url discovery functions has changed from
async function(distDir, visit) { return [...someURLs] }
to
async function({ distDir, visit }) { return [...someURLs] }
This makes it nicer to compose multiple URL discovery strategies.