Created
August 10, 2015 22:43
-
-
Save joliss/77afc14617db70930372 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var rootNode = require('broccoli-root-node'); | |
| var Watched = rootNode.Watched, Unwatched = rootNode.Unwatched; | |
| // Refers to the ./lib directory on disk, and watches it. | |
| var lib = new Watched('lib'); | |
| // Refers to the ./bower_components/jquery directory, but does not watch it. | |
| var jquery = new Unwatched('bower_components/jquery'); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment