@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
* [clean( paths?: string[] )](src/plugins/clean/README.md) - Clean paths prior to building.
* [copy( source: string, target: string, patterns?: string[] )](src/plugins/copy/README.md) - Copy files from one directory to another after each build.
*
css( options?: ImporterOptions ) - Import CSS, SASS and SCSS files as a
string,
CSSStyleSheet or
HTMLStyleElement.
*
html( options?: ImporterOptions ) - Import HTML files as a
string or
HTMLTemplateElement.
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_
* _ctx:_ PluginContext
The current Rollup plugin context.
* _moduleId:_ string
The module id to find the entry info for.
_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
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_
* Rollup - createFilter
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_
* Rollup - createFilter
Changelog
| Version | Description |
|-----------|------------------------------|
| 0.0.1 | Initial release |
| 0.0.2 | Fix package.json files issue |