This repository was archived by the owner on Apr 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
gulpfile: fix nodemon settings #10
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,11 +18,16 @@ process.env.NODE_PATH = __dirname + ':' + process.env.NODE_PATH; | |
| // run the entire project | ||
| gulp.task('run', function(cb) { | ||
| nodemon({ | ||
| script: 'app.js', | ||
| ext: 'html js ejs', | ||
| ignore: ['node_modules/**', 'node_modules/**/node_modules', 'build/**'], | ||
| watch: findSrc(), | ||
| cwd: path.join(__dirname, 'web'), | ||
| script: 'web/app.js', | ||
| ext: 'html js ejs json', | ||
| ignore: [ | ||
| '**/node_modules/**', | ||
| 'html5/build/**', | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm trying to avoid hard coding package names (eg
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point. How about
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tried that initially and had issues. Maybe I had the wrong |
||
| '**/test/**', | ||
| '.*' // .git, .idea, etc. | ||
| ], | ||
| watch: __dirname, | ||
| cwd: __dirname, | ||
| env: {NODE_PATH: process.env.NODE_PATH}, | ||
| nodeArgs: ['--debug'] | ||
| }) | ||
|
|
@@ -64,17 +69,6 @@ function findAndBuild(packageName, cb) { | |
| async.each(packages, build, cb); | ||
| } | ||
|
|
||
| function findSrc(package) { | ||
| var paths = []; | ||
| findPackages(package).forEach(function(pkg) { | ||
| paths.push(path.join(__dirname, pkg, '*', '*.js')); | ||
| paths.push(path.join(__dirname, pkg, '*', '*.json')); | ||
| paths.push(path.join(__dirname, pkg, '*.js')); | ||
| paths.push(path.join(__dirname, pkg, '*.json')); | ||
| }); | ||
| return paths; | ||
| } | ||
|
|
||
| var packageCache; | ||
|
|
||
| function findPackages(packageName) { | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd like to avoid this if possible. We should use the
package.jsonmain script instead.