betty.extension.webpack package

Subpackages

Submodules

Module contents

Integrate Betty with Webpack.

This module is internal.

class betty.extension.webpack.PrebuiltAssetsRequirement[source]

Bases: Requirement

Check if prebuilt assets are available.

is_met() bool[source]

Check if the requirement is met.

Return type:

bool

summary() betty.locale.Str[source]

Get the requirement’s human-readable summary.

Return type:

betty.locale.Str

class betty.extension.webpack.Webpack[source]

Bases: Extension, CssProvider, Jinja2Provider, Generator

Integrate Betty with Webpack.

Parameters:
classmethod assets_directory_path() pathlib._local.Path[source]

Return the path on disk where the extension’s assets are located.

This may be anywhere in your Python package.

Return type:

pathlib._local.Path

build_requirement() betty.requirement.Requirement[source]

Get the requirement that must be satisfied for Webpack builds to be available.

Return type:

betty.requirement.Requirement

classmethod enable_requirement() betty.requirement.Requirement[source]

Define the requirement for this extension to be enabled.

This defaults to the extension’s dependencies.

Return type:

betty.requirement.Requirement

property filters: dict[str, Callable[[...], Any]]

Jinja2 filters provided by this extension.

Keys are filter names, and values are the filters themselves.

async generate(job_context: betty.generate.GenerationContext) None[source]

Generate (part of) a project’s site.

Parameters:

job_context (betty.generate.GenerationContext)

Return type:

None

classmethod name() str[source]

The machine name.

Return type:

str

new_context_vars() dict[str, Any][source]

Create new variables for a new jinja2.runtime.Context.

Keys are the variable names, and values are variable values.

Return type:

dict[str, typing.Any]

async prebuild(job_context: betty.job.Context) None[source]

Prebuild the Webpack assets.

Parameters:

job_context (betty.job.Context)

Return type:

None

property public_css_paths: list[str]

The public URL paths to the CSS files to include in each HTML page.

class betty.extension.webpack.WebpackEntryPointProvider[source]

Bases: object

An extension that provides Webpack entry points.

webpack_entry_point_cache_keys() collections.abc.Sequence[str][source]

Get the keys that make a Webpack build for this provider unique.

Providers that can be cached regardless may return ().

Return type:

collections.abc.Sequence[str]

classmethod webpack_entry_point_directory_path() pathlib._local.Path[source]

Get the path to the directory with the entry point assets.

The directory must include at least a package.json and main.ts.

Return type:

pathlib._local.Path