File tree Expand file tree Collapse file tree 4 files changed +50
-0
lines changed Expand file tree Collapse file tree 4 files changed +50
-0
lines changed Original file line number Diff line number Diff line change 11# node_modules should be installed with npm install
22specs /node_modules
3+ docs /node_modules
4+ docs /.grunt
35
46# Ignore generated site files
57_site
Original file line number Diff line number Diff line change 1+ module . exports = function ( grunt ) {
2+ grunt . initConfig ( {
3+ 'gh-pages' : {
4+ options : {
5+ base : 'dist'
6+ } ,
7+ src : [ '**' ]
8+ }
9+ } ) ;
10+
11+ // Load plugins
12+ grunt . loadNpmTasks ( 'grunt-gh-pages' ) ;
13+
14+ // Register tasks
15+ grunt . registerTask ( 'publish' , [ 'gh-pages' ] ) ;
16+ } ;
Original file line number Diff line number Diff line change 1+ <!doctype html>
2+ < html >
3+ < head >
4+ < title > Excel-REST</ title >
5+ </ head >
6+ < body >
7+ Excel-REST docs, coming soon...
8+ </ body >
9+ </ html >
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " Excel-REST-docs" ,
3+ "version" : " 0.0.0" ,
4+ "description" : " Excel-REST Docs" ,
5+ "repository" : {
6+ "type" : " git" ,
7+ "url" : " https://github.com/timhall/Excel-REST.git"
8+ },
9+ "keywords" : [
10+ " Excel-REST" ,
11+ " Docs"
12+ ],
13+ "author" :
" Tim Hall ([email protected] )" ,
14+ "license" : " MIT" ,
15+ "bugs" : {
16+ "url" : " https://github.com/timhall/Excel-REST/issues"
17+ },
18+ "homepage" : " https://github.com/timhall/Excel-REST" ,
19+ "devDependencies" : {
20+ "grunt" : " ~0.4.5" ,
21+ "grunt-gh-pages" : " ~0.9.1"
22+ }
23+ }
You can’t perform that action at this time.
0 commit comments