Package Exports
- file-resolver
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (file-resolver) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
file-resolver
Lead Maintainer: Aria Stewart
Used in kraken based projects for resolving file paths when given the locale, source file name, and the file extension.
Simple Usage:
var fr = require('fileResolver'),
resolver = fr.create({root: 'path/to/templates', fallback: 'en_US', ext: 'dust'}),
fileInfo = resolver.resolve('foo', 'es_ES');
//fileInfo = {
// root: 'path/to/templates/ES/es',
// file: 'path/to/templates/ES/es/foo.dust',
// ext: 'dust',
// name: 'foo'
//}Running Tests:
To Run tests
$npm test
To Run Coverage
$npm run-script cover
To Run linting
$npm run-script lint