Skip to content

Commit

Permalink
feat(gulpfile): add buildDev, buildProd
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjanssen committed Nov 24, 2014
1 parent 88a761d commit 5c9e782
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion core/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,17 @@ module.exports = function (argTasks, appPath) {
name: 's3',
env: 'prod',
tags: fullBuildTags.concat(['s3'])
}
},
{
name: 'buildDev',
env: 'dev',
tags: fullBuildTags
},
{
name: 'buildProd',
env: 'prod',
tags: fullBuildTags
},
];

tasks.forEach(function (task) {
Expand Down

0 comments on commit 5c9e782

Please sign in to comment.