1.1.2 • Published 9 years ago

thunderstone v1.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

Thunderstone

Gruntjs tool to generate a report of the used css selectors within html pages.

Getting Started

This plugin requires Grunt ~0.4.5

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 thunderstone --save-dev

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

grunt.loadNpmTasks("thunderstone");

The "thunderstone" task

Overview

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

grunt.initConfig({
	thunderstone: {
	    html: ["example/*.html"],
	    css: ["example/*.css"],
	    outputDir: "results/"
	}
});

Options

html

Type: Array of String

Array of html patterns to process

css

Type: Array of String

Array of css patterns to process

outputDir

Type: String

Relative folder path to save the results

Usage Examples

Custom Options

In this example, the matching html files and css files will be processed. The output will be written in the output folder.

grunt.initConfig({
	thunderstone: {
	    html: ["*.html"],
	    css: ["*.css"],
	    outputDir: "output/"
	}
});

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.

Edit template

If you want to change the output file templates. Change the .vash file in the templates/ folder. Learn more about vash

Tests

Run grunt tests to execute the tests.

Release History

1.1.0

Finally figured out all the pieces to make the grunt.loadNpmTasks("thunderstone") working.

1.1.2

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.14

9 years ago

1.0.13

9 years ago

1.0.12

9 years ago

1.0.11

9 years ago

1.0.10

9 years ago

1.0.9

9 years ago

1.0.8

9 years ago

1.0.7

9 years ago

1.0.6

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago