0.0.2 • Published 2 years ago

@steveush/rollup-utils v0.0.2

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

@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

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.

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
    Returns true if the value is a filter pattern, otherwise false.

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
    Returns true if the value is a filter pattern, otherwise false.

See

Changelog

VersionDescription
0.0.1Initial release
0.0.2Fix package.json files issue
0.0.2

2 years ago

0.0.1

2 years ago