Skip to content
This repository has been archived by the owner on May 19, 2021. It is now read-only.

Releases: dunnkers/ember-polymer

Update Polymer to 2.6.0

29 Apr 20:49
571fc18
Compare
Choose a tag to compare

Ensure backwards-compatibility with Ember 3.0 🐹

25 Feb 19:53
3dc1425
Compare
Choose a tag to compare

Fix build when project has no package file 🔨

29 Jan 12:14
7dda3de
Compare
Choose a tag to compare

Fix the build process in the case where a package is installed that for some reason does not have its package.json or bower.json file defined. See #85. Thanks to @PabloHidalgo.

Cheers. 🍻

Update Ember to v2.18.0

03 Jan 02:23
de9bb06
Compare
Choose a tag to compare

Update Ember version, as well as ember-cli, polymer and other dep versions.

Fix recognition of some web components

20 Nov 04:01
d9500a4
Compare
Choose a tag to compare

Fix recognition of some web components. Elements like these which do not have web-components keywords in their bower.json should now be recognized.

This based on when the main entry point is equal to the package name plus .html.

Cheers 🍺

Minor fixes and features

10 Nov 03:19
d5412c3
Compare
Choose a tag to compare

Allow for Global Polymer settings as requested in #76. See https://www.polymer-project.org/2.0/docs/devguide/settings for details. Allows for settings options you would in Polymer normally set like this:

  <script>
    window.Polymer = {
      rootPath: '/your/application/root'
    };
  </script>

Like this in the ember-polymer config:

  globalPolymerSettings: {
    rootPath: '/your/application/root'
  }

Polymer v2.0 support 💎🌺

10 Nov 02:20
6c0ef38
Compare
Choose a tag to compare
  • Has support for Polymer v2.0!
  • Uses polymer-bundler to bundle elements instead of vulcanize
  • Codebase is more modular and has more effective tests
  • The addon now uses a broccoli plugin in auto importing elements, which results in less tmp folders
  • We now use parse5 to process the html imports file instead of using regexes

Rewritten code base

10 Nov 01:44
d49c2b7
Compare
Choose a tag to compare
Rewritten code base Pre-release
Pre-release

More robust codebase and tests.

Allow Global Polymer settings

10 Nov 03:32
8c3633d
Compare
Choose a tag to compare

See (https://www.polymer-project.org/1.0/docs/devguide/settings)[https://www.polymer-project.org/1.0/docs/devguide/settings]. Allows you to configure settings like this:

  <script>
    /* this script must run before Polymer is imported */
    window.Polymer = {
      dom: 'shadow',
      lazyRegister: true
    };
  </script>

Improve broccoli element building

28 Oct 03:22
Compare
Choose a tag to compare
Pre-release

By using create file plugins. Also, update terminology to match bundler.