A web compile tool (v0.1.2) for building pipelines of compilation tasks. It provides a plugin-based architecture where processing steps (e.g., transpilation, minification) are chained in a pipeline. Unlike monolithic build tools, it focuses solely on orchestrating compilers. Released as a minimal Node.js package with no stable release cadence; current version is pre-1.0. It differentiates by being lightweight and extensible via custom plugins.
npm install compilerNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic pipeline usage: create a Compiler instance, add plugins via .use(), then run inputs through the pipeline.
Ensure .use() calls are in the desired sequence.
Update plugins to accept only input and return transformed string.
Use import Compiler from 'compiler' or const Compiler = require('compiler').default;Ensure each argument to .use() is a function that takes input and returns output.