mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 01:56:21 +00:00
Add YUIDoc support
This commit is contained in:
parent
5304cbabd9
commit
bf34b01367
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
node_modules/
|
node_modules/
|
||||||
tests/sandbox/
|
tests/sandbox/
|
||||||
|
docs/
|
||||||
|
22
Gruntfile.js
22
Gruntfile.js
@ -15,15 +15,33 @@ module.exports = function (grunt) {
|
|||||||
reporter: 'spec'
|
reporter: 'spec'
|
||||||
},
|
},
|
||||||
all: { src: ['tests/*.js'] }
|
all: { src: ['tests/*.js'] }
|
||||||
|
},
|
||||||
|
|
||||||
|
yuidoc: {
|
||||||
|
compile: {
|
||||||
|
name: '<%= pkg.name %>',
|
||||||
|
description: '<%= pkg.description %>',
|
||||||
|
version: '<%= pkg.version %>',
|
||||||
|
url: '<%= pkg.homepage %>',
|
||||||
|
options: {
|
||||||
|
paths: 'src/',
|
||||||
|
//themedir: 'path/to/custom/theme/',
|
||||||
|
outdir: 'docs/'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
grunt.initConfig( opts );
|
grunt.initConfig( opts );
|
||||||
grunt.loadNpmTasks('grunt-simple-mocha');
|
grunt.loadNpmTasks('grunt-simple-mocha');
|
||||||
grunt.registerTask('test', 'Test the FluentLib library.', function( config ) {
|
grunt.loadNpmTasks('grunt-contrib-yuidoc');
|
||||||
|
grunt.registerTask('test', 'Test the FluentCV library.', function( config ) {
|
||||||
grunt.task.run( ['simplemocha:all'] );
|
grunt.task.run( ['simplemocha:all'] );
|
||||||
});
|
});
|
||||||
grunt.registerTask('default', [ 'test' ]);
|
grunt.registerTask('document', 'Generate FluentCV library documentation.', function( config ) {
|
||||||
|
grunt.task.run( ['yuidoc'] );
|
||||||
|
});
|
||||||
|
grunt.registerTask('default', [ 'test', 'yuidoc' ]);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user