ember-engines

Composable Ember applications for ambitious user experiences

MIT License

Downloads
42.8K
Stars
489
Committers
90

Bot releases are visible (Hide)

ember-engines - Release 0.8.2

Published by rwjblue over 5 years ago

v0.8.2 (2019-06-22)

πŸ› Bug Fix

Committers: 1

ember-engines - Release 0.8.1

Published by rwjblue over 5 years ago

v0.8.1 (2019-06-21)

πŸ› Bug Fix

  • #665 Avoid shipping regenerator-runtime to production (@scalvert)

🏠 Internal

  • #661 Update deps that were blocked on dropping Node 6. (@rwjblue)

Committers: 2

ember-engines - Release 0.8.0

Published by rwjblue over 5 years ago

πŸ’₯ Breaking Change

πŸš€ Enhancement

  • #630 Allow app.importing from node_modules in lazy engines (@villander)

πŸ› Bug Fix

  • #646 Fix vendor tree usage inside a nested lazy loaded engine (@2hu12)

πŸ“ Documentation

🏠 Internal

Committers: 3

ember-engines - Release 0.7.2

Published by rwjblue over 5 years ago

v0.7.2 (2019-06-18)

πŸ› Bug Fix

  • #642 Fix issues with {{link-to}} and {{link-to-external}} with Ember 3.10 (@buschtoens)
  • #640 Update blueprints to avoid linting errors with recent versions of eslint-plugin-ember (@villander)

πŸ“ Documentation

  • #641 Update README with table of contents (@villander)
  • #650 Update {{mount}} documentation to indicate a model named argument can be passed (@garjust)

Committers: 4

ember-engines -

Published by stefanpenner over 5 years ago

v0.6.1 (2019-03-12)

πŸš€ Enhancement

Committers: 1

ember-engines -

Published by stefanpenner over 5 years ago

v0.6.2 (2019-03-26)

πŸ› Bug Fix

Committers: 1

ember-engines -

Published by rwjblue over 5 years ago

πŸ’₯ Breaking Change

  • #622 Drop Node 4 support. (@rwjblue)
  • #619 Upgrade dependencies and addon blueprint to match ember-cli 3.8 (@dgeb)

πŸš€ Enhancement

  • #605 Issue warning when an engine does not have ember-addon and ember-engine keywords in package.json (@villander)

πŸ› Bug Fix

🏠 Internal

Committers: 5

ember-engines -

Published by trentmwillis almost 8 years ago

ember-engines -

Published by trentmwillis almost 8 years ago

ember-engines -

Published by trentmwillis almost 8 years ago

ember-engines - v0.4.0-beta.1

Published by trentmwillis almost 8 years ago

Beta support for lazy loading!

ember-engines -

Published by dgeb about 8 years ago

This release relies on the engine-related hooks enabled in Ember v2.8.x. It should not be used with earlier versions of Ember. Instead use ember-engines v0.2.x for compatibility with Ember v2.6 and v2.7.

ember-engines -

Published by dgeb about 8 years ago

Another v0.2.x release that's compatible with ember 2.6.x and 2.7.x.

Changes include:

  • Generate engine config in separate method #175
ember-engines -

Published by dgeb about 8 years ago

Another v0.2.x release that's compatible with ember 2.6.x and now 2.7.x.

Changes include:

  • Ember 2.7 compatibility #178
ember-engines -

Published by dgeb about 8 years ago

Another v0.2.x release that's compatible with ember 2.6.x.

Changes include:

  • Backport of upstream changes to outlet keyword #169
ember-engines -

Published by dgeb about 8 years ago

Another v0.2.x release that's compatible with ember 2.6.x.

Changes include:

  • Fix: Query parameters are not rehydrated #166
ember-engines -

Published by dgeb over 8 years ago

Another v0.2.x release that's compatible with ember 2.6.x.

Changes include:

ember-engines - Improved addon support

Published by dgeb over 8 years ago

This release changes the way engines load their included addons. Engines now have access to all of the modules in an addon's app dir, without the need to import/re-export the modules. In other words, engines now treat their addons in the same way apps treat their addons.

In order to enable this behavior, you'll need to modify your engine's index.js to use the new EngineAddon extension. For example:

/*jshint node:true*/
var EngineAddon = require('ember-engines/lib/engine-addon');

module.exports = EngineAddon.extend({
  name: 'ember-blog'
});