Bug fixes
- I18n now works correctly for pages (created via
harmonic new_page
). (@viniciusdacal) - Fixed a dependency issue which was breaking published packages¹ (es20xx). (@UltCombo)
¹ This means previous releases of Harmonic may not be working anymore. From now on, the releases are more future-proof. Please update your Harmonic installation (npm i -g harmonic
).
This is because Harmonic used to depend on the latest backwards-compatible babel-runtime
version, which in turn used to do the same with the Regenerator runtime, whose changes were not actually "backwards-compatible" with code generated with any previous Regenerator version. The compiled code which Harmonic ships always stays the same, and thus could be broken whenever a new Regenerator version was published. This is all sorted out now, though.
Docs
- Fixed typo. (@brenopolanski)
Internal
- Fixed linting errors. (@viniciusdacal)
- Improved deploy automation (es20xx). (@UltCombo)
Huge thanks to @viniciusdacal for making this release possible. 😄