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.
Common errors
error Cannot find module 'rollup' ↓
cause Missing peer dependency rollup
fix
npm install rollup --save-dev
Warnings
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.
Install
npm install taskkit-rollup yarn add taskkit-rollup pnpm add taskkit-rollup Imports
- default
import taskkitRollup from 'taskkit-rollup'
Quickstart
import taskkitRollup from 'taskkit-rollup';
taskkitRollup({
input: 'src/index.js',
output: {
file: 'dist/bundle.js',
format: 'cjs'
}
}).then(() => console.log('done'));