ember-cli-misvg

0.3.0 • Public • Published

npm version Build Status ember-cli version

ember-cli-misvg

Ember addon to combine SVG files into one JS file and inject it through dedicated component into application. It makes maintenance of SVGs easy and deliver the best possible interaction with SVGs.

Installation

ember install ember-cli-misvg

Usage

Configuration

Define where your SVG icons are in public directory (sourceDirs param) and where the output should be placed (outputFile param). Like this:

// ember-cli-build.js
 
let app = new EmberApp(defaults, {
  misvg: {
    files: {
      sourceDirs: 'public/img/svg-icon',
      outputFile: '/assets/svg-sprites.js'
    },
    misvgOptions: {
      indent: 2
    }
  }
});

Optionally you can also pass misvg configuration options via misvgOptions property.

Adding to project

Add generated script file that contains sprites to your project:

// index.html
<script src="{{rootURL}}assets/svg-sprites.js"></script>

Usage via component

Use misvg-icon component with the name of SVG icon (in align with the filename). You can also scale it via width and height params.

{{misvg-icon name="star" width=20 height=20}}

Contributing

Installation

  • git clone https://github.com/vastec/misvg.git
  • cd ember-cli-misvg
  • npm install

Linting

  • npm run lint:js
  • npm run lint:js -- --fix

Running tests

  • ember test – Runs the test suite on the current Ember version
  • ember test --server – Runs the test suite in "watch mode"
  • ember try:each – Runs the test suite against multiple Ember versions

Running the dummy application

For more information on using ember-cli, visit https://ember-cli.com/.

License

This project is licensed under the MIT License.

Dependencies (9)

Dev Dependencies (19)

Package Sidebar

Install

npm i ember-cli-misvg

Weekly Downloads

6

Version

0.3.0

License

MIT

Unpacked Size

70.5 kB

Total Files

19

Last publish

Collaborators

  • tniezurawski