Skip to content

Commit

Permalink
Docs: Update browserify links (#2072)
Browse files Browse the repository at this point in the history
  • Loading branch information
him2him2 authored and phated committed Dec 27, 2017
1 parent ff4e719 commit 260d5c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/recipes/browserify-transforms.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Browserify + Transforms

[Browserify](https://github.com/substack/node-browserify) has become an important and indispensable
[Browserify](https://github.com/browserify/browserify) has become an important and indispensable
tool but requires being wrapped before working well with gulp. Below is a simple recipe for using
Browserify with transforms.

Expand Down
2 changes: 1 addition & 1 deletion docs/recipes/browserify-uglify-sourcemap.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Browserify + Uglify2 with sourcemaps

[Browserify](https://github.com/substack/node-browserify) has become an important and indispensable
[Browserify](https://github.com/browserify/browserify) has become an important and indispensable
tool but requires being wrapped before working well with gulp. Below is a simple recipe for using
Browserify with full sourcemaps that resolve to the original individual files.

Expand Down
4 changes: 2 additions & 2 deletions docs/recipes/fast-browserify-builds-with-watchify.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Fast browserify builds with watchify

As a [browserify](https://github.com/substack/node-browserify) project begins to expand, the time to bundle it slowly gets longer and longer. While it might start at 1 second, it's possible to be waiting 30 seconds for your project to build on particularly large projects.
As a [browserify](https://github.com/browserify/browserify) project begins to expand, the time to bundle it slowly gets longer and longer. While it might start at 1 second, it's possible to be waiting 30 seconds for your project to build on particularly large projects.

That's why [substack](https://github.com/substack) wrote [watchify](https://github.com/substack/watchify), a persistent browserify bundler that watches files for changes and *only rebuilds what it needs to*. This way, that first build might still take 30 seconds, but subsequent builds can still run in under 100ms – which is a huge improvement.
That's why [substack](https://github.com/substack) wrote [watchify](https://github.com/browserify/watchify), a persistent browserify bundler that watches files for changes and *only rebuilds what it needs to*. This way, that first build might still take 30 seconds, but subsequent builds can still run in under 100ms – which is a huge improvement.

Watchify doesn't have a gulp plugin, and it doesn't need one: you can use [vinyl-source-stream](https://github.com/hughsk/vinyl-source-stream) to pipe the bundle stream into your gulp pipeline.

Expand Down

0 comments on commit 260d5c4

Please sign in to comment.