You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go through all of the 1.0 issues with breaking changes and make a list of things that need to be updated.
Use console warnings whenever possible to alert users as to old API usage. Use contextual and very informative information about what changed and what changes need to be made in the message.
Prefer (if using a Configuration API method) moderate backwards compatibility to allow the opposite method to still work. e.g. eleventyConfig.setDataDeepMerge(true); is now enabled by default but keep eleventyConfig.setDataDeepMerge(false); for easier upgrading (or even a migration plugin to set these defaults).
The text was updated successfully, but these errors were encountered:
Go through all of the 1.0 issues with breaking changes and make a list of things that need to be updated.
Use console warnings whenever possible to alert users as to old API usage. Use contextual and very informative information about what changed and what changes need to be made in the message.
Prefer (if using a Configuration API method) moderate backwards compatibility to allow the opposite method to still work. e.g.
eleventyConfig.setDataDeepMerge(true);
is now enabled by default but keepeleventyConfig.setDataDeepMerge(false);
for easier upgrading (or even a migration plugin to set these defaults).The text was updated successfully, but these errors were encountered: