Compare commits

...

2 Commits

Author SHA1 Message Date
Samy Pessé f03c316274 Bump version to 1.4.1 2014-11-30 17:01:47 +01:00
Samy Pessé 001a4f91be Fix command 'install' without arguments 2014-11-30 17:00:12 +01:00
3 changed files with 6 additions and 1 deletions
+3
View File
@@ -1,5 +1,8 @@
# Release notes
## 1.4.1
- Fix command 'install' without arguments
## 1.4.0
- Add command `gitbook install` to install plugins from book.json
- `package.json` is no longer necessary
+2
View File
@@ -83,6 +83,8 @@ build.command(prog.command('serve [source_dir]'))
build.commandEbook(prog.command('install [source_dir]'))
.description('Install plugins for a book')
.action(function(dir, options) {
dir = dir || process.cwd();
console.log("Install plugins in", dir);
genbook.config.read({
input: dir
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "gitbook",
"version": "1.4.0",
"version": "1.4.1",
"homepage": "http://www.gitbook.io/",
"description": "Library and cmd utility to generate GitBooks",
"main": "lib/index.js",