File tree Expand file tree Collapse file tree 3 files changed +59
-1
lines changed Expand file tree Collapse file tree 3 files changed +59
-1
lines changed Original file line number Diff line number Diff line change 23
23
24
24
# SDK binaries
25
25
/src /sdk /bootdisk /bin /hello
26
- /src /sdk /c.img
26
+ /src /sdk /c.img
27
+
28
+ node_modules
29
+ .grunt
Original file line number Diff line number Diff line change
1
+ var path = require ( "path" ) ;
2
+
3
+ module . exports = function ( grunt ) {
4
+ grunt . loadNpmTasks ( 'grunt-gitbook' ) ;
5
+ grunt . loadNpmTasks ( 'grunt-gh-pages' ) ;
6
+ grunt . loadNpmTasks ( 'grunt-contrib-clean' ) ;
7
+
8
+ grunt . initConfig ( {
9
+ 'gitbook' : {
10
+ development : {
11
+ dest : path . join ( __dirname , ".grunt/gitbook" ) ,
12
+ input : "./" ,
13
+ title : "How to Make a Computer Operating System in C++" ,
14
+ github : "SamyPesse/How-to-Make-a-Computer-Operating-System"
15
+ }
16
+ } ,
17
+ 'gh-pages' : {
18
+ options : {
19
+ base : '.grunt/gitbook'
20
+ } ,
21
+ src : [ '**' ]
22
+ } ,
23
+ 'clean' : {
24
+ files : '.grunt'
25
+ }
26
+ } ) ;
27
+
28
+ grunt . registerTask ( 'publish' , [
29
+ 'gitbook' ,
30
+ 'gh-pages' ,
31
+ 'clean'
32
+ ] ) ;
33
+ grunt . registerTask ( 'default' , 'gitbook' ) ;
34
+ } ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " how-to-make-an-operating-system" ,
3
+ "version" : " 0.0.1" ,
4
+ "description" : " " ,
5
+ "repository" : {
6
+ "type" : " git" ,
7
+ "url" : " https://github.com/SamyPesse/How-to-Make-a-Computer-Operating-System.git"
8
+ },
9
+ "author" :
" Samy Pesse <[email protected] >" ,
10
+ "license" : " Apache 2" ,
11
+ "dependencies" : {},
12
+ "devDependencies" : {
13
+ "grunt" : " ~0.4.1" ,
14
+ "grunt-gitbook" : " git+https://github.com/GitbookIO/grunt-gitbook.git" ,
15
+ "grunt-gh-pages" : " 0.9.1" ,
16
+ "grunt-contrib-clean" : " ~0.5.0"
17
+ },
18
+ "peerDependencies" : {
19
+ "grunt" : " ~0.4.1"
20
+ }
21
+ }
You can’t perform that action at this time.
0 commit comments