From f79e59f8b46707c6102fd4d93ed940dcae937b15 Mon Sep 17 00:00:00 2001 From: Ivan Rubinson Date: Fri, 27 Sep 2019 08:32:27 +0300 Subject: [PATCH] Change URLs from "Substack" (someones personal site & acc) to "browserify" (#369) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Change URLs to browserify * fixup * Change URLs to browserify * Update package.json Co-Authored-By: Renée Kooi * Update readme.markdown Co-Authored-By: Renée Kooi --- package.json | 4 ++-- readme.markdown | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index d01091c..77ccaef 100644 --- a/package.json +++ b/package.json @@ -26,9 +26,9 @@ }, "repository": { "type": "git", - "url": "git://github.com/substack/watchify.git" + "url": "git://github.com/browserify/watchify.git" }, - "homepage": "https://github.com/substack/watchify", + "homepage": "https://github.com/browserify/watchify", "keywords": [ "browserify", "browserify-tool", diff --git a/readme.markdown b/readme.markdown index 266ddc4..ac312ae 100644 --- a/readme.markdown +++ b/readme.markdown @@ -90,7 +90,7 @@ var watchify = require('watchify'); ## watchify(b, opts) -watchify is a browserify [plugin](https://github.com/substack/node-browserify#bpluginplugin-opts), so it can be applied like any other plugin. +watchify is a browserify [plugin](https://github.com/browserify/browserify#bpluginplugin-opts), so it can be applied like any other plugin. However, when creating the browserify instance `b`, **you MUST set the `cache` and `packageCache` properties**: @@ -107,7 +107,7 @@ var b = browserify({ }); ``` -**By default, watchify doesn't display any output, see [events](https://github.com/substack/watchify#events) for more info.** +**By default, watchify doesn't display any output, see [events](https://github.com/browserify/watchify#events) for more info.** `b` continues to behave like a browserify instance except that it caches file contents and emits an `'update'` event when a file changes. You should call @@ -240,7 +240,7 @@ to get just the library. ## rebuilds on OS X never trigger -It may be related to a bug in `fsevents` (see [#250](https://github.com/substack/watchify/issues/205#issuecomment-98672850) +It may be related to a bug in `fsevents` (see [#250](https://github.com/browserify/watchify/issues/205#issuecomment-98672850) and [stackoverflow](http://stackoverflow.com/questions/26708205/webpack-watch-isnt-compiling-changed-files/28610124#28610124)). Try the `--poll` flag and/or renaming the project's directory - that might help.