Skip to content

Commit f1d505e

Browse files
committed
Update to gitbook 0.2.0
1 parent e58f7c5 commit f1d505e

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Gruntfile.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ module.exports = function (grunt) {
99
grunt.initConfig({
1010
'gitbook': {
1111
development: {
12-
output: path.join(__dirname, ".grunt/gitbook"),
1312
input: "./",
1413
title: "Learn Git",
1514
description: "The entire Pro Git book.",
@@ -18,17 +17,17 @@ module.exports = function (grunt) {
1817
},
1918
'gh-pages': {
2019
options: {
21-
base: '.grunt/gitbook'
20+
base: '_book'
2221
},
2322
src: ['**']
2423
},
2524
'clean': {
26-
files: '.grunt'
25+
files: '_book'
2726
},
2827
'http-server': {
2928
'dev': {
3029
// the server root directory
31-
root: '.grunt/gitbook',
30+
root: '_book',
3231

3332
port: 4000,
3433
host: "127.0.0.1",

package.json

Lines changed: 1 addition & 1 deletion
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
"grunt-http-server": "0.0.4"

0 commit comments

Comments
 (0)