Platform-specific native binary for SWC TypeScript/JavaScript compiler on macOS ARM64 architecture
89
Build a module bundler that can bundle JavaScript modules with circular dependencies into a single output file.
The bundler should:
Create test files to verify the bundler behavior:
@generates
/**
* Bundles JavaScript modules starting from an entry point.
*
* @param {Object} options - Bundling configuration
* @param {string} options.entry - Path to the entry point file
* @param {string} options.output - Path where the bundled file should be written
* @returns {Promise<void>} Resolves when bundling is complete
*/
async function bundle(options) {
// IMPLEMENTATION HERE
}
module.exports = { bundle };Provides JavaScript bundling capabilities with circular dependency resolution support.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/npm-swc--core-darwin-arm64docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10