grunt-url-image-crawler
v1.3.1
Published
Crawl your CSS/SCSS or HTML files for img URL's and store the crawled image URL's in a local JSON file.
Downloads
8
Readme
grunt-url-crawler
Crawl your CSS files for URL's and store the crawled image URL's in a local JSON file.
Getting Started
This plugin requires Grunt ~0.4.2
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-url-crawler --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-url-crawler');
The "url_crawler" task
Overview
In your project's Gruntfile, add a section named grunt-url-image-crawler
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
url_crawler: {
default_options: {
options: {
},
files: {
'tmp/CSSImages.js': ['test/fixtures/main.css'],
},
}
}
});
Options
options.separator
Type: String
Default value: ', '
A string value that is used to do something with whatever.
options.punctuation
Type: String
Default value: '.'
A string value that is used to do something else with whatever else.
Usage Examples
Default Options
In this example test/fixtures/main.css is being crawled and url() imaghes are being exstracted and saved to a local JSON file result/CSSImages.JSON
grunt.initConfig({
url_crawler: {
default_options: {
options: {
},
files: {
'tmp/CSSImages.js': ['test/fixtures/main.css'],
},
}
}
});
Release History
(Nothing yet)