Simple file pipe process
This plugin requires Grunt >=0.4.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-pipe --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-pipe');
In your project's Gruntfile, add a section named pipe
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
pipe: {
your_target: {
options: {
ignoreEmpty : true,
domMode : false,
process : function(content, options, grunt, srcFilePath){
// write your want content
return content
}
},
// Target-specific file lists and/or options go here.
},
},
})
Type: Function
Processing function that has below arguments.
-
content
String
- source file content.
-
filepath
String
- source file path
-
grunt
Object
- grunt object
-
example
- this example replace content item
function(content, filepath, grunt){
return content.replace(/baz/,'foo')
}
Type: Boolean
Default value: true
When this value true and process result is empty value, this task not output anything.
Type: Boolean
Default value: false
If true, convert content to cheerio dom object.
You can handling dom in options.process for example below.
function($, filepath, grunt){
$('div').attr('foo','baz')
return $.html()
}
Since release 2.X
of this project, the output produces and entire HTML object with <head>
and <body>
tags instead of treating the content as (a part of) the HTML body. This matches the new CheerIO behaviour introduced in it's 1.0.0-rc.2
release.
To restore the old behaviour you need to access the <body>
tag, see the following example.
function($, filepath, grunt){
$('div').attr('foo','baz')
return $('body').html()
}
In this sample, replace test/fixtures/foo's content's baz to foo.
default_options: {
options: {
process : function(content, filepath, grunt){
return content.replace(/baz/,'foo')
}
},
files: {
'tmp/foo': 'test/fixtures/foo'
},
},
In this sample, change dom items.
dom_mode: {
options: {
domMode : true,
process : function($, filepath, grunt){
$('div').attr('foo','baz')
return $.html()
}
},
files: {
'tmp/dom_mode': 'test/fixtures/dom_mode'
},
},
Multiple source file sample. If files has multiple source file, ouput concat each result.
multifiles : {
options: {
process : function(content, filepath, grunt){
return 'filepath:' + filepath + '\n'
+ 'content:' + content + '\n'
}
},
files: {
'tmp/multifiles': ['test/fixtures/foo', 'test/fixtures/dom_mode']
},
}
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.