dgeni-packages
Advanced tools
Comparing version 0.20.0 to 0.20.1
@@ -136,3 +136,2 @@ var path = require('canonical-path'); | ||
* Resolve the relative include/exclude paths in the sourceInfo object, | ||
* @private | ||
*/ | ||
@@ -238,2 +237,2 @@ function normalizeSourceInfo(basePath, sourceInfo) { | ||
}); | ||
} | ||
} |
# Changelog | ||
# 0.20.1 16 August 2017 | ||
## Features | ||
* **jsdoc**: add propertyof jsdoc tag 6712e544 | ||
## Fixes | ||
* **dgeni**: ensure that dgeni self documenting config works 8052e9e6 | ||
# 0.20.0 27 July 2017 | ||
@@ -4,0 +14,0 @@ |
@@ -1,2 +0,2 @@ | ||
var sortByDependency = require('dgeni/lib/util/dependency-sort'); | ||
var sortByDependency = require('dgeni/lib/util/dependency-sort').sortByDependency; | ||
@@ -24,2 +24,2 @@ module.exports = function computeProcessorPipeline() { | ||
return processors; | ||
} | ||
} |
@@ -19,3 +19,3 @@ module.exports = function wireUpServicesToPackages() { | ||
docs.forEach(function(doc) { | ||
if(doc.docType === 'dgService') { | ||
if(doc.docType === 'dgService' || doc.docType === 'dgProcessor') { | ||
doc.name = doc.name || doc.codeName; | ||
@@ -28,2 +28,2 @@ doc.packageDoc = services[doc.name]; | ||
}; | ||
}; | ||
}; |
@@ -11,3 +11,3 @@ # docs package | ||
```bash | ||
npm install | ||
yarn | ||
``` | ||
@@ -18,3 +18,3 @@ | ||
```bash | ||
npm run docs | ||
yarn docs | ||
``` | ||
@@ -27,2 +27,6 @@ | ||
The output of running this package is a set of MarkDown files that | ||
could be pushed to GitHub Pages. | ||
could be pushed to GitHub Pages. The files are save to | ||
``` | ||
dgeni-packages/.tmp/docs/... | ||
``` |
@@ -11,2 +11,3 @@ | ||
require('./property'), | ||
require('./propertyof'), | ||
require('./returns'), | ||
@@ -13,0 +14,0 @@ require('./type'), |
@@ -6,3 +6,3 @@ var tagDefFactories = require('./'); | ||
expect(tagDefFactories).toEqual(jasmine.any(Array)); | ||
expect(tagDefFactories.length).toEqual(26); | ||
expect(tagDefFactories.length).toEqual(27); | ||
tagDefFactories.forEach(function(factory) { | ||
@@ -9,0 +9,0 @@ expect(factory).toEqual(jasmine.any(Function)); |
{ | ||
"name": "dgeni-packages", | ||
"version": "0.20.0", | ||
"version": "0.20.1", | ||
"description": "A collection of dgeni packages for generating documentation from source code", | ||
@@ -112,4 +112,5 @@ "scripts": { | ||
"Nick Horvath <nhorvath@gmail.com>", | ||
"Georgios Kalpakas <kalpakas.g@gmail.com>" | ||
"Georgios Kalpakas <kalpakas.g@gmail.com>", | ||
"Jicheng Li <deemstone@gmail.com>" | ||
] | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
839008
573
14057