@steveush/rollup-utils
v0.0.2
Published
Rollup utility classes, methods and plugins for simple builds.
Downloads
2
Readme
@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[] ) - Clean paths prior to building.
- copy( source: string, target: string, patterns?: string[] ) - Copy files from one directory to another after each build.
- css( options?: ImporterOptions ) - Import CSS, SASS and SCSS files as a
string
,CSSStyleSheet
orHTMLStyleElement
. - html( options?: ImporterOptions ) - Import HTML files as a
string
orHTMLTemplateElement
.
Classes
Importer
- A utility class to help create Rollup plugins for importing and transforming text files.SourceMap
- A version 3 source map implementation.
Methods
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 foundnull
is returned.
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.
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
Returnstrue
if the value is a filter pattern, otherwisefalse
.
See
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
Returnstrue
if the value is a filter pattern, otherwisefalse
.
See
Changelog
| Version | Description | |-----------|------------------------------| | 0.0.1 | Initial release | | 0.0.2 | Fix package.json files issue |