0.2.0 • Published 10 years ago
bower-typings v0.2.0
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 fileincludeSelf(default: true) - include/exclude typings defined intypingsin ownunify.json.includeDevSelf(default: true) - include/exclude typings defined indevTypingsin ownunify.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 });