Socket
Book a DemoInstallSign in
Socket

grunt-matter

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-matter

Add, extend, sort or strip YAML front matter. Also has options for populating randomized mock data. This plugin is especially useful for creating test or example templates.

latest
Source
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

grunt-matter NPM version Build Status

Add, extend, sort or strip YAML front matter. Also has options for populating randomized mock data. This plugin is especially useful for creating test or example templates.

This plugin is useful for adding or extending YAML front matter in general, but it was created to make it easier to create and update templates for tests and boilerplates.

Getting Started

Overview

In your project's Gruntfile, add a section named matter to the data object passed into grunt.initConfig().

grunt.initConfig({
  matter: {
    options: {
      // Task-specific options go here.
    },
    target: {
      // Target-specific file lists and/or options go here.
    }
  }
})

Options

props

Type: Object Default value: undefined

Extend YAML front matter with given properties. Example:

mock

Type: Object Default value: undefined

Extend YAML front matter with generated random data, based on a defined template model. See datafixture.js for the full list of options.

sort

Type: Boolean Default value: false

Alphabetically sort the properties in the specified YAML front matter.

strip

Type: Boolean Default value: false

Strip all YAML front matter from the given pages.

Usage Examples

props

Extend YAML front matter in the given pages with any number of custom properties.

grunt.initConfig({
  matter: {
    options: {
      props: {
        foo: 'One',
        bar: 'Two',
        someObj: {
          baz: 'Lorem'
        }
      }
    },
    files: {}
  }
});

mock data

grunt.initConfig({
  matter: {
    options: {
      mock: {
        "lorem": "lorem"
        values: "0...100:2", 
        names: ["Ian",2, 10.4, true, "Andros"], 
        complex: {
          PO:"20000...30000",
          country: ["Mexico", "Canada", "US"]
        }
      }
    },
    files: {}
  }
});

Author

License

Copyright (c) 2013 Jon Schlinkert, contributors. Released under the MIT license

This file was generated on Mon Sep 02 2013 09:44:51.

Keywords

gruntplugin

FAQs

Package last updated on 01 Nov 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts