Socket
Socket
Sign inDemoInstall

thunderstone

Package Overview
Dependencies
179
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    thunderstone

Maps the usage of css selectors and html files


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Install size
40.2 MB
Created
Weekly downloads
 

Readme

Source

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.

Keywords

FAQs

Last updated on 09 Feb 2015

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc