Skip to content
This repository has been archived by the owner on Mar 31, 2020. It is now read-only.

Commit

Permalink
Make src directory configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyWay committed Dec 11, 2014
1 parent 125b9e1 commit 6e28384
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ var _ = require('underscore');

var config = {
production: !! util.env.production,
srcDir: 'app',
assetsDir: 'resources/assets/',
cssOutput: 'public/css',
jsOutput: 'public/js',
Expand Down
2 changes: 1 addition & 1 deletion ingredients/tdd.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ gulp.task('tdd', function() {
gulp.watch(srcPaths[task], [task]);
});

gulp.watch('app/**/*.php', tasksToRun);
gulp.watch(config.srcDir + '/**/*.php', tasksToRun);
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "laravel-elixir",
"version": "0.9.0",
"version": "0.9.1",
"description": "Laravel Elixir Core",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 6e28384

Please sign in to comment.