Skip to content
This repository has been archived by the owner on Dec 20, 2018. It is now read-only.

v1.2.0

Compare
Choose a tag to compare
@san650 san650 released this 31 Mar 04:37
· 101 commits to master since this release

This is a feature release

Project Update

$ ember install ember-web-app

Or...

$ npm install --save-dev [email protected]
$ ember generate ember-web-app

Main changes

Set apple touch icons as precomposed

Now you can set apple touch icons as precomposed

Example

config/manifest.js

manifest.apple = {
  icons: [
    {
      src: '/foo/bar.png',
      sizes: '180x180'
    }
  ],

  precomposed: 'true'
};

generates

<link rel="apple-touch-icon-precomposed" href="/foo/bar.png" sizes="180x180">

Thanks @hidnasio for the contribution!

Disable manifest generation

Now you can disable the generation of the manifest (and related meta and link tags).

ember-cli-build.js

var EmberApp = require('ember-cli/lib/broccoli/ember-app');

module.exports = function(defaults) {
  var options = {
    'ember-web-app': {
      enabled: false
    }
  };

  var app = new EmberApp(defaults, options);

  return app.toTree();
};

Community contributions

Happy coding!