gulp-typedoc
Advanced tools
Comparing version 1.2.0 to 1.2.1
@@ -35,2 +35,4 @@ // (c) Rogier Schouten <rogier.schouten@gmail.com> | ||
delete options.out; | ||
var json = options.json; | ||
delete options.json; | ||
var version = options.version; | ||
@@ -56,3 +58,3 @@ delete options.version; | ||
if (out) app.generateDocs(project, out); | ||
if (options.json) app.generateJson(project, options.json); | ||
if (json) app.generateJson(project, json); | ||
if (app.logger.hasErrors()) { | ||
@@ -59,0 +61,0 @@ stream.emit("error", new PluginError(PLUGIN_NAME, "There were errors generating TypeDoc output, see above.")); |
{ | ||
"name": "gulp-typedoc", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "Gulp plugin for the TypeDoc typescript documentation tool.", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -21,2 +21,3 @@ // (c) Rogier Schouten <rogier.schouten@gmail.com> | ||
out: "./out", | ||
json: "./out/test.json", | ||
name: "gulp-typedoc-test", | ||
@@ -23,0 +24,0 @@ target: "es5", |
7742
138