Socket
Socket
Sign inDemoInstall

gulp-typedoc-extractor

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-typedoc-extractor

A post processor to extract a module from gulp-typedoc json output.


Version published
Weekly downloads
34
decreased by-66.99%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-typedoc-extractor NPM version Build status

A post processor to extract a module from gulp-typedoc json output.

Usage

First, install gulp-typedoc-extractor as a development dependency:

npm install --save-dev gulp-typedoc-extractor

Then, add it to your gulpfile.js:

Extract Module

var extractModule = require('gulp-typedoc-extractor');

gulp.task('extract-module', function(){
  gulp.src(['dest/full-api.json'])
    .pipe(extractModule('aurelia-framework'))
    .pipe(gulp.dest('dest/api.json'));
});

API

gulp-typedoc-extractor is called with a module name.

extractModule(string)

string

Type: String

The module to extract from the json generated by gulp-typedoc.

Keywords

FAQs

Package last updated on 19 Aug 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc