forked from gulpjs/gulp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request gulpjs#138 from phated/master
add recipes for specifying a different gulpfile and setting a different base path using plain JS - closes gulpjs#122
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Specifying a different gulpfile | ||
|
||
`gulpfile.js` | ||
|
||
```js | ||
var gulp = require('gulp'); | ||
var path = require('path'); | ||
|
||
try { | ||
require(path.resolve(__dirname, gulp.env.gulpfile)); | ||
} catch (err) { | ||
console.error('Unable to load %s', gulp.env.gulpfile); | ||
} | ||
``` |
This file contains 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Specifying a new base directory | ||
|
||
`gulpfile.js` | ||
|
||
```js | ||
var gulp = require('gulp'); | ||
|
||
try { | ||
process.chdir(gulp.env.base); | ||
} catch (err) { | ||
console.error('Unable to chdir to %s', gulp.env.base); | ||
} | ||
``` |