Socket
Socket
Sign inDemoInstall

broccoli-optimize-js

Package Overview
Dependencies
148
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    broccoli-optimize-js

broccoli filter for optimize-js


Version published
Weekly downloads
1
Maintainers
1
Install size
8.91 MB
Created
Weekly downloads
 

Readme

Source

broccoli-optimize-js

JS optimizer for broccoli using

  • UglifyJS2
  • optimize-js

Installation

npm install --save-dev broccoli-optimize-js

Usage

var optimizeJs = require('broccoli-optimize-js');
var concat = require('broccoli-concat');
var merge = require('broccoli-merge-trees');

var eagerOpt = optimizeJs(eagerSrc, {
  mangle: true,
  compress: true,
  sourceMap: true,
  eager: true
});

var lazyOpt = optimizeJs(lazySrc, {
  mangle: true,
  compress: true,
  sourceMap: true
});

var bundle = concat(merge([ lazyOpt, eagerOpt ]), {
  outputFile: '/bundle.js',
  inputFiles: ['**/*'],
  sourceMapConfig: {
    enabled: true
  },
});

Options

The following options are supported:

  • eager hint code for eager parsing
  • mangle UglifyJS2 mangle
  • compress UglifyJS2 compress options
  • output UglifyJS2 codegen options

Source Maps

Source maps are inlined, this makes caching easier, this is intended to be used with broccoli-concat which will split out the source map again.

Keywords

FAQs

Last updated on 30 Sep 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc