Skip to content

Commit ada8a46

Browse files
committed
Update gitbook to 0.2.0
1 parent 9a0c2bd commit ada8a46

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@
2626
/src/sdk/c.img
2727

2828
node_modules
29-
.grunt
29+
.grunt
30+
_book

Gruntfile.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,13 @@ module.exports = function (grunt) {
88
grunt.initConfig({
99
'gitbook': {
1010
development: {
11-
output: path.join(__dirname, ".grunt/gitbook"),
1211
input: "./",
13-
title: "How to Make a Computer Operating System in C++",
14-
description: "Online book about how to write a computer operating system in C/C++ from scratch",
1512
github: "SamyPesse/How-to-Make-a-Computer-Operating-System"
1613
}
1714
},
1815
'gh-pages': {
1916
options: {
20-
base: '.grunt/gitbook'
17+
base: '_book'
2118
},
2219
src: ['**']
2320
},

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
How to Make a Computer Operating System
22
=======================================
33

4+
Online book about how to write a computer operating system in C/C++ from scratch.
5+
46
**Caution**: This repository is a remake of my old course. It was written several years ago [as one of my first projects when I was in High School](https://github.com/SamyPesse/devos), I'm still refactoring some parts. The original course was in French and I'm not an English native. I'm going to continue and improve this course in my free-time.
57

68
**Book**: An online version is available at [http://samypesse.github.io/How-to-Make-a-Computer-Operating-System/](http://samypesse.github.io/How-to-Make-a-Computer-Operating-System/). It was been generated using [GitBook](https://github.com/GitbookIO/gitbook).

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {},
1212
"devDependencies": {
1313
"grunt": "~0.4.1",
14-
"grunt-gitbook": "0.1.2",
14+
"grunt-gitbook": "0.2.0",
1515
"grunt-gh-pages": "0.9.1",
1616
"grunt-contrib-clean": "~0.5.0"
1717
},

0 commit comments

Comments
 (0)