bower-typings

v0.2.0
Utility to retrieve typescript definitions from bower dependencies.
unify bower tsd typescript

bower-typings

Utility to retrieve typescript definitions from bower dependencies using unify.json. See fayde-unify for more information on unify.json.

Usage

require('bower-typings')([options])

options

  • unifyPath (default ./unify.json) - path to unify file
  • includeSelf (default: true) - include/exclude typings defined in typings in own unify.json.
  • includeDevSelf (default: true) - include/exclude typings defined in devTypings in own unify.json.
// Simple - Finds all typings from unify.json
var typings = require('bower-typings')();

// Exclude my own typings
var typings = require('bower-typings')({includeSelf: false});

// Exclude my dev typings
var typings = require('bower-typings')({includeDevSelf: false});

Scan

require('bower-typings').scan([options])

options

  • self (default: true) - include/exclude typings defined in ./typings/**/*.d.ts.
// Simple - Finds all typings in every bower library (including self) in typings directory.
var typings = require('bower-typings').scan();

// Finds all typings in every bower library (excluding self) in typings directory.
var typings = require('bower-typings').scan({ self: false });
npm i bower-typings

Metadata

  • MIT
  • Whatever
  • Brad Sickles
  • released 8/19/2015

Downloads

Maintainers