You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
browserify-incremental doesn’t work with multiple bundles compiled at
the same time. This makes it very unreliable and can produce very hard
to trace errors in client-side code. This uses rebundler instead, which,
as long as it’s given the `persistKey` option, doesn’t have the same
problem.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,7 +117,7 @@ If `true`, minifies source code and sets debug to true. If object, passed as opt
117
117
If `true`, [watchify](https://github.com/substack/watchify) will be used to create a file watcher and speed up subsequent builds.
118
118
119
119
#### opts.cache
120
-
If truthy, will use [browserify-incremental](https://github.com/jsdf/browserify-incremental) to cache the result of a build. This can give you dramatically faster build times if you're not using `opts.watch`.
120
+
If truthy, will use [rebundler](https://github.com/bjoerge/rebundler) to cache the result of a build. This can give you dramatically faster build times if you're not using `opts.watch`.
121
121
122
122
If `opts.cache` is a string, it will be used as the file path to save the cache file to.
0 commit comments