Detalhes do pacote

broccoli-favicon

davewasmer11.4kMIT3.0.0

Generate favicons and HTML using Favicons package

broccoli, plugin, favicons

readme (leia-me)

broccoli-favicon

Build Status Dependency Status

Takes a single favicon.png and outputs various sizes and file formats for favicons for different platforms and devices. Uses favicons, see that projects documentation for details on the full range of support favicon generation.

Usage

Default configuration values are show below:

import Favicon from "broccoli-favicon";

const outputNode = new Favicon(nodeWithFaviconImage, {
  iconPath: "favicon.png", // The path to the source image in 'nodeWithFaviconImage'

  onSuccess(htmlArray, rawObject) {
    // this method is called once the generator finishes;
    // the first parameter is an array of strings containing
    // the appropriate HTML to use the generated icons
    // and the second argument is a raw object containing serialized html objects
  },

  // The favicons config object is passed directly to the underlying `Favicons` module
  // See https://github.com/haydenbleasel/favicons for details and defaults
  faviconsConfig: {},
});

changelog (log de mudanças)

Change Log

2.1.2 (2019-06-11)

Full Changelog

Fixed bugs:

v2.1.1 (2019-06-05)

Full Changelog

Merged pull requests:

v2.1.0 (2019-03-14)

Full Changelog

Merged pull requests:

  • Update favicons dependency to v5.3.0 #46 (Turbo87)

v2.0.0 (2018-11-17)

Full Changelog

Implemented enhancements:

Closed issues:

  • Update Favicons #43
  • manifest.json missing #37

Merged pull requests:

v1.0.0 (2016-06-22)

Full Changelog

Merged pull requests:

v1.0.0-beta.2 (2016-04-14)

Full Changelog

Closed issues:

  • Plugin abandoned #3
  • Failing tests with node 0.12.7 #1

v1.0.0-beta.1 (2016-04-13)

Full Changelog

v0.0.3 (2015-05-23)

Full Changelog

v0.0.2 (2015-05-21)

* _This Change Log was automatically generated by github_changelog_generator_