@steveush/rollup-utils
Rollup utility classes, methods and plugins for simple builds.
NOTE
Any version below 1.0.0 is considered experimental and is subject to change.
This package was created for my personal use, and so is provided as is.
Plugins
Classes
Importer
- A utility class to help create Rollup plugins for importing and transforming text files.SourceMap
- A version 3 source map implementation.
Methods
getEntryInfo( ctx: PluginContext, moduleId: string ): ModuleInfo | null
Get the entry ModuleInfo for the given module id.
Params
Returns
ModuleInfo
If the entry was successfully found its ModuleInfo is returned.null
If the entry was not found null
is returned.
getImportedIds( ctx: PluginContext, moduleId: string, addSelf?: boolean ): Readonly<string>
Recursively retrieve all imported module ids, in the order they were imported, for a given module.
Params
-
ctx: PluginContext
The current Rollup plugin context.
-
moduleId: string
The module id to retrieve all imported ids for.
-
addSelf: boolean
optional
Whether to include the given moduleId in the result.
Returns
Readonly<string>
A readonly string array of imported module ids, in the order they were imported, for the given module.
isFilterPattern( value: any ): boolean
Check if a value is a Rollup filter pattern.
This does not accept null
as a valid pattern, it checks if the value is a string
or RegExp
instance, or an array
of string
or RegExp
instances.
Params
- value:
any
The value to check.
Returns
boolean
Returns true
if the value is a filter pattern, otherwise false
.
See
isSourceMapLike( value: any ): boolean
Check if a value is a Rollup filter pattern.
This does not accept null
as a valid pattern, it checks if the value is a string
or RegExp
instance, or an array
of string
or RegExp
instances.
Params
- value:
any
The value to check.
Returns
boolean
Returns true
if the value is a filter pattern, otherwise false
.
See
Changelog
Version | Description |
---|
0.0.1 | Initial release |
0.0.2 | Fix package.json files issue |