Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
broccoli-es6-module-transpiler
Advanced tools
A Broccoli plugin that transpiles ES6 modules to other module types using Square's es6-module-transpiler.
Note: The es6-module-transpiler
package underwent a major refactor after
v0.4.0
, the previous version of this package that works with the older
transpiler is available on the transpiler-0.4
branch.
var compileModules = require('broccoli-es6-module-transpiler');
var transpiledLib = compileModules(lib, {
formatter: 'commonjs'
});
The bundle format is perfect for packaging your app's modules into one file that can be loaded in the browser without needing a module loader.
var compileModules = require('broccoli-es6-module-transpiler');
var transpiledLib = compileModules(lib, {
formatter: 'bundle',
output : 'app.js'
});
Note: The output
option has a specified value to tell the transpiler where
to output the new JavaScript file that contains the bundled transpiled modules.
An output
value is required when using the Bundle Format.
The latest version of Square's transpiler is flexible and pluggable, and while it doesn't ship with AMD support built-in you can use the AMD formatter: es6-module-transpiler-amd-formatter.
var compileModules = require('broccoli-es6-module-transpiler');
var AMDFormatter = require('es6-module-transpiler-amd-formatter');
var transpiledLib = compileModules(lib, {
formatter: new AMDFormatter()
});
compileModules(inputTree, [options])
options.formatter
{String | Object}
The formatter instance or built-in name to use to transpile the modules.
Built-in formatters: bundle
, commonjs
.
Default: bundle
.
options.resolvers
{Array}
An array of resolver classes used to resolve modules to their source code.
Default: [ FileResolver ]
.
options.output
{String}
The path where the transpiler should output the transpiled modules to. For formatters that output one file per module, this should be a directory, while formatters like the Bundle Format require a value for this option and it must be a file path.
Default: "."
.
FAQs
Broccoli plugin for Square's ES6 Module Transpiler
The npm package broccoli-es6-module-transpiler receives a total of 19 weekly downloads. As such, broccoli-es6-module-transpiler popularity was classified as not popular.
We found that broccoli-es6-module-transpiler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.