Skip to content
This repository was archived by the owner on Apr 23, 2024. It is now read-only.

Latest commit

 

History

History
35 lines (25 loc) · 977 Bytes

File metadata and controls

35 lines (25 loc) · 977 Bytes

⚠️ status: deprecated

for browserify bundle factoring take a look at bify-module-groups instead.

bify-package-factor

Browserify plugin that creates bundles factored at package-level granularity. The browserify stream output becomes a vinyl-source-stream, emitting one vinyl file metadata object per bundle.

use

This will generate three bundles. One bundle for packages unique to each of the entrypoints, and one common bundle for packages that are used by both.

const bundler = browserify(['entry1.js', 'entry2.js'])
  .plugin('bify-package-factor')

bundler.bundle()
  .pipe(gulp.dest('./bundles/'))

You can then import the common bundle as well as your entry-specific bundle.

<title>page one</title>
<script src="./bundles/common.js">
<script src="./bundles/entry1.js">
<title>page two</title>
<script src="./bundles/common.js">
<script src="./bundles/entry2.js">