npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grunt-connect-fonts

v0.0.10

Published

Grunt plugin to generate CSS files for connect-fonts compatible font packs.

Downloads

16

Readme

grunt-connect-fonts

Grunt plugin to generate CSS files for connect-fonts compatible font packs.

Getting Started

This plugin requires Grunt ~1.0.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-connect-fonts --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-connect-fonts');

The "connect_fonts" task

Overview

The connect_font task generates locale specific CSS files. In your project's Gruntfile, add a section named connect_fonts to the data object passed into grunt.initConfig().

grunt.initConfig({
  connect_fonts: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific options go here.
    },
  },
});

Options

options.fontPacks

Type: Array Default value: []

Array of strings. Each value is the name of the npm module for the font-pack. Font packs must be installed via npm install before use.

Example:

fontPacks: [ 'connect-fonts-firasans', 'connect-fonts-opensans' ]

options.fontNames

Type: Array Default value: []

Array of strings. Each value is the name of the font to be included.

Example:

fontNames: [ 'firasans-bold', 'firasans-light' ]

options.languages

Type: Array Default value: []

Array of strings. Each value is the l10n name for the languages to generate CSS for.

Example:

languages: [ 'en', 'de', 'es_MX', 'es_AR' ]

options.dest

Type: String Default value: 'tmp/css'

Where to place the CSS files.

Example:

dest: '.tmp/css'

options.destFileName

Type: function Default value: function (root, language) { return root + language + '.css'; }

Function used to modify the default destination filename.

Example:

destFileName: function (root, language) {
  // place the CSS into the `fonts.css` file in the `language` subdirectory.
  return root + language + '/fonts.css';
}

options.userAgent

Type: String Default value: 'all'

User agent to generate strings for. See https://github.com/shane-tomlinson/connect-fonts for how this can be used. Usually best to leave at all.

Usage Examples

Write {{ locale name }}.css files to the static/css directory

In the following example, four files are created in the static/css directory: en.css, de.css, es.css, es_MX.css. Each file contains @font-face CSS declarations for firasans-bold and firasans-regular that are tailored to that locale.


grunt.initConfig({
  connect_fonts: {
    options: {
      fontPacks: [ 'connect-fonts-firasans' ],
      fontNames: [ 'firasans-bold', 'firasans-regular' ],
      languages: [ 'en', 'de', 'es', 'es_MS' ],
      dest: 'static/css'
    }
  },
});

The "connect_fonts_copy" task

Overview

The connect_font_copy task copies web fonts from an npm package to a target directory. In your project's Gruntfile, add a section named connect_fonts_copy to the data object passed into grunt.initConfig().

grunt.initConfig({
  connect_fonts_copy: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific options go here.
    },
  },
});

Options

options.fontPacks

Type: Array Default value: []

Array of strings. Each value is the name of the npm module for the font-pack. Font packs must be installed via npm install before use.

Example:

fontPacks: [ 'connect-fonts-firasans', 'connect-fonts-opensans' ]

options.dest

Type: String Default value: 'tmp/fonts'

Where to place the font files.

Example:

dest: 'static/fonts'

Usage Examples

Copy web fonts to the static/fonts directory

In the following example, the web fonts available in the connect-fonts-firasans font pack are copied to the static/fonts directory.


grunt.initConfig({
  connect_fonts_copy: {
    options: {
      fontPacks: [ 'connect-fonts-firasans' ],
      dest: 'static/fonts'
    }
  },
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Author:

Get involved:

Documentation, new features, MOAR FONTS!

License:

This software is available under version 2.0 of the MPL:

https://www.mozilla.org/MPL/