Package Exports
- really-require
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 (really-require) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
really-require
A module that checks for unused and missing dependencies
API
reallyRequire(modulePath, options)
:
modulePath
: String, full or relative path to moduleoptions
: String, path to package.json. Object, values of package.json. Default,path.join(modulePath, 'package.json')
sourceGlob
: String[], globs to use for searching the source files. Default,['*.js', 'src/**/*.js', 'lib/**/*.js']
nodeModules
: String[], paths to search in for modules. Default,[path.join(modulePath, 'node_modules')]
Returns:
result.missing
: Object[] Messages about missing dependenciesresult.missing[].error
: Flag if the warning is fatalresult.missing[].message
: Message to displayresult.missing[].dependency
: Dependency nameresult.missing[].location
: Location of the errorresult.missing[].location.file
: Filenameresult.missing[].location.from.line
: Line at which the statement beginsresult.missing[].location.from.column
: Column at which the statement beginsresult.missing[].location.to.line
: Line at which the statement endsresult.missing[].location.to.column
: Column at which the statement endsresult.unused
: Object[] Messages about unused dependenciesresult.unused[].error
: Flag if the warning is fatalresult.unused[].message
: Message to displayresult.unused[].dependency
: Dependency nameresult.errors
: Object[] Parsing errors that occuredresult.errors[].file
: File which caused the errorresult.errors[].error
: Error Object