Registry / devops / gobble-rollup

gobble-rollup

JSON →
library0.40.0jsnpmunverified

A gobble plugin to bundle ES6 modules using Rollup. Version 0.40.0 is the latest stable release. Abandoned since 2017; no updates for over 8 years, last commit on 2015-11-08. No longer maintained. Alternatives: use Rollup directly with modern build tools.

npm install gobble-rollup
INSTALL
IMPORT
SIG · GOBBLE-ROLLUP
G
gobble-rollup
devopsjavascriptv0.40.0
Install
Import
Disk
Pass rate
0/ 6
Env Coverage0 / 6
glibc
1822
musl
1822
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18223 runs
build_error
glibc
node 18223 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

transform
const gobble = require('gobble'); module.exports = gobble('src').transform('rollup', options)
import { transform } from 'gobble-rollup'
Not a direct import; used as a gobble transform plugin via string reference 'rollup'.
plugin
const gobble = require('gobble'); const rollupPlugin = require('gobble-rollup'); goble('src').transform(rollupPlugin, options)
import rollupPlugin from 'gobble-rollup'
ESM imports might be unsupported; common pattern is require with string name.
gobble-rollup
npm install -D gobble-rollup
npm install gobble-rollup --save
Should be devDependency since it's a build tool plugin.

Shows how to use gobble-rollup to bundle app.js from 'src' directory into an IIFE bundle.

const gobble = require('gobble'); module.exports = gobble('src').transform('rollup', { entry: 'app.js', dest: 'bundle.js', format: 'iife', moduleName: 'MyApp' });
Debug
Known issues
deprecatedPackage is abandoned; no updates since 2015.
fix
Use Rollup directly or modern bundler like Vite.
affects: >=0.0.0
gotchaRequires gobble build system; cannot be used standalone.
fix
Install gobble as a parent dependency.
affects: >=0.0.0
gotchaRollup version compatibility unknown; may break with modern Rollup versions.
fix
Pin Rollup to version compatible with this plugin's peer range.
affects: >=0.40.0
Errors
Common errors & fixes
Error: Cannot find module 'gobble'
gobble not installed
fix
npm install gobble
Error: Cannot find module 'rollup'
rollup not installed
fix
npm install rollup
TypeError: gobble is not a function
gobble not required correctly
fix
const gobble = require('gobble');
Upgrade
Version history
0.40.0latest on npm
Audit
Dependencies
rolluprequiredpeer dependency for Rollup functionality
gobblerequiredpeer dependency; requires gobble build system
Agent activity
2 hits · last 30 days
node
2
Resources
gobble-rollup — npm install gobble-rollup · libregistry