Socket
Socket
Sign inDemoInstall

dgeni

Package Overview
Dependencies
17
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.7 to 0.4.8

5

CHANGELOG.md
# ChangeLog
## 0.4.8 15 June 2017
* fix(processor): add missing fields to Processor type definition b4ed72f0
## 0.4.7 15 February 2017

@@ -4,0 +9,0 @@

7

package.json
{
"name": "dgeni",
"version": "0.4.7",
"description": "Flexible JavaScript documentation generator used by Angular",
"version": "0.4.8",
"description": "Flexible JavaScript documentation generator used by both AngularJS and Angular",
"main": "lib/index.js",

@@ -65,3 +65,4 @@ "types": "lib/index.d.ts",

"Vlad Ioffe <vlio20@gmail.com>",
"geminiyellow <geminiyellow@gmail.com>"
"geminiyellow <geminiyellow@gmail.com>",
"Adam Herrmann <aherrmann@factset.com>"
],

@@ -68,0 +69,0 @@ "bugs": {

@@ -19,5 +19,5 @@ # Dgeni - Documentation Generator [![Build Status](https://travis-ci.org/angular/dgeni.svg?branch=master)](https://travis-ci.org/angular/dgeni)

## Documenting Angular 1 Apps
## Documenting AngularJS Apps
There are two projects out there that build upon dgeni to help create documentation for Angular 1 apps:
There are two projects out there that build upon dgeni to help create documentation for AngularJS apps:

@@ -24,0 +24,0 @@ * dgeni-alive: https://github.com/wingedfox/dgeni-alive

import {DocCollection} from './DocCollection';
export type ProcessorDef = Processor | ((() => Processor) & { name?: string });
export type ProcessorDef = Processor | (((...args: any[]) => Processor) & { name?: string });
export interface Processor {
$process(docs: DocCollection): DocCollection | void;
$process(docs: DocCollection): DocCollection | PromiseLike<DocCollection> | void;
name?: string;
description?: string;
$runBefore?: string[];
$runAfter?: string[];
$enabled?: boolean;
$package?: string;
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc