Skip to content

Commit

Permalink
add recipes for specifying a different gulpfile and setting a differe…
Browse files Browse the repository at this point in the history
…nt base path using plain JS - closes gruntjs#122
  • Loading branch information
phated committed Jan 13, 2014
1 parent 03c44ae commit 9712a87
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/recipes/specifying-a-different-gulpfile.md
@@ -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);
}
```
13 changes: 13 additions & 0 deletions docs/recipes/specifying-a-new-base-directory.md
@@ -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);
}
```

0 comments on commit 9712a87

Please sign in to comment.