Skip to content

Commit 260d5c4

Browse files
him2him2phated
authored andcommitted
Docs: Update browserify links (#2072)
1 parent ff4e719 commit 260d5c4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/recipes/browserify-transforms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Browserify + Transforms
22

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

docs/recipes/browserify-uglify-sourcemap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Browserify + Uglify2 with sourcemaps
22

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

docs/recipes/fast-browserify-builds-with-watchify.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Fast browserify builds with watchify
22

3-
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.
3+
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.
44

5-
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.
5+
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.
66

77
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.
88

0 commit comments

Comments
 (0)