taskkit-rollup

raw JSON →
4.0.1 verified Mon Apr 27 auth: no javascript maintenance

A TaskKit plugin for building Rollup projects. Version 4.0.1 is the latest stable release. Released through npm, the package wraps Rollup configuration into the TaskKit task runner ecosystem. It is designed to simplify the use of Rollup within TaskKit, but the project appears to have low maintenance cadence with few recent updates compared to direct Rollup usage. Differentiators: integrates with TaskKit's build pipeline, but limited community adoption and documentation.

error Cannot find module 'rollup'
cause Missing peer dependency rollup
fix
npm install rollup --save-dev
breaking Upgrade to v4 requires Rollup >=2.x. Plugin options changed from v3.
fix Update to taskkit-rollup v4 and ensure Rollup v2+ is installed.
gotcha Plugin only works within TaskKit environment; not standalone
fix Install and use TaskKit as parent task runner.
npm install taskkit-rollup
yarn add taskkit-rollup
pnpm add taskkit-rollup

Basic usage of taskkit-rollup plugin to bundle a JavaScript file.

import taskkitRollup from 'taskkit-rollup';

taskkitRollup({
  input: 'src/index.js',
  output: {
    file: 'dist/bundle.js',
    format: 'cjs'
  }
}).then(() => console.log('done'));