bpkg icon indicating copy to clipboard operation
bpkg copied to clipboard

Bundler and release tool for node.js

Results 3 bpkg issues
Sort by recently updated
recently updated
newest added

Steps to reproduce: `bpkg --browser --umd --name primitives --output /tmp/primitives.js lib/primitives/index.js` Include the file in any web page rendered an ElectronJS Browser window. The primitives variable will be undefined.

This one seems tricker because the recommended code pattern is `var binding = require('node-gyp-build')(__dirname)` Would need to potentially replace the path in the AST or otherwise support dynamic imports then...

I am possibly doing something stupid but given a simple project using log4js: ``` // index.js // Import the log4js library const log4js = require('log4js'); // Configure log4js (simplest configuration...