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

browserify bundle factoring at package-level granularity

Notifications You must be signed in to change notification settings

LavaMoat/bify-package-factor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⚠️ 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">

About

browserify bundle factoring at package-level granularity

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published