Registry / devops / cep-bundler-core

cep-bundler-core

JSON →
library0.3.0jsnpmunverified

Core functionality for building bundler extensions to compile Adobe CEP (Common Extensibility Platform) extensions. Version 0.3.0 provides a single compile() function that generates manifest.xml, dev.html, node_modules folder, and optional .debug file. Supports environment-specific configurations via package.json or environment variables (CEP_NAME, CEP_ID, CEP_HOSTS). Key differentiator: it's a low-level core for custom bundler plugins, not a full build tool like cep-bundler-webpack. No notable release cadence; last release appears static.

npm install cep-bundler-core
INSTALL
IMPORT
SIG · CEP-BUNDLER-CORE
C
cep-bundler-core
devopsjavascriptv0.3.0
Install
—
Import
—
Disk
—
Pass rate
0/ 6
Env Coverage0 / 6
glibc
18–22
musl
18–22
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 18–226 runs
build_error
glibc
node 18–226 runs
build_error
Code
Verified usage

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

compile
✓ const { compile } = require('cep-bundler-core')
✗ import { compile } from 'cep-bundler-core'
Package is CommonJS-only. ESM imports will fail.
default
✓ const core = require('cep-bundler-core')
✗ import core from 'cep-bundler-core'
No default export; module exports an object with compile function.
compile options
✓ core.compile({ out: '/path/to/dist', isDev: false })
✗ core({ out: '/path/to/dist' })
Module itself is not callable; must use .compile() method.

Shows required `out` field, optional `isDev` toggling, and environment-based configuration.

const { compile } = require('cep-bundler-core'); compile({ out: '/path/to/dist', isDev: true, env: process.env.NODE_ENV ?? 'development', root: '/path/to/project', htmlFilename: 'index.html', pkg: require('./package.json') });
Debug
Known issues
gotchaCommonJS-only module; using ES `import` will throw a SyntaxError.
fix
Use `require('cep-bundler-core')` instead of `import`.
affects: >=0.0.0
gotchaThe `out` option must point to a directory where write permissions exist; otherwise compile fails silently.
fix
Ensure `out` is a writable directory path.
affects: >=0.0.0
gotchaEnvironment variable `NODE_ENV` is not set automatically; using `env` without setting it may default incorrectly.
fix
Set `NODE_ENV` before compile, or pass `env` explicitly.
affects: >=0.0.0
Errors
Common errors & fixes
TypeError: core is not a function
Attempting to call the required module directly instead of using `.compile()`.
fix
Use `core.compile(...)` or destructure `{ compile }`.
Cannot find module 'cep-bundler-core'
Package not installed or installed in a non-resolvable location.
fix
Run `npm install cep-bundler-core` in your project root.
Upgrade
Version history
0.3.0latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
4
OpenAI (training)
1
Resources
cep-bundler-core — npm install cep-bundler-core · libregistry