File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -6,5 +6,10 @@ module.exports = function (grunt) {
6
6
7
7
var loader = require ( 'load-project-config' ) ,
8
8
config = require ( 'grunt-plugin-fleet' ) ;
9
+ config = config ( ) ;
10
+ // jshint ignore: start
11
+ config . taskMap [ 'faq_builder' ] = 'grunt-helpscout-faq' ;
12
+ // jshint ignore: end
13
+ loader ( grunt , config ) . init ( ) ;
9
14
loader ( grunt , config ) . init ( ) ;
10
15
} ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Faq builder for Grunt
3
+ */
4
+ //jshint ignore: start
5
+ module . exports = {
6
+ options : {
7
+ filename : 'readme.txt' ,
8
+ api_key : 'e2a5c1a75f6132ced80bb05ee445a76ffa7fc430' ,
9
+ collection_id : '561ec249c69791452ed4bceb' ,
10
+ category_id : '596e5c5f2c7d3a73488b33ec' ,
11
+ template : "= {article_title} = \n [{article_link}]({article_link}) \n\n " ,
12
+ } ,
13
+ helpscout : { } ,
14
+ } ;
Original file line number Diff line number Diff line change 23
23
},
24
24
"devDependencies" : {
25
25
"grunt-plugin-fleet" : " github:codeinwp/grunt-plugin-fleet" ,
26
- "load-project-config" : " ~0.2.0"
26
+ "load-project-config" : " ~0.2.0" ,
27
+ "grunt-helpscout-faq" : " ~0.1.0"
27
28
},
28
29
"wraithSlug" : [
29
30
" visualizer"
You can’t perform that action at this time.
0 commit comments