Skip to content

Instantly share code, notes, and snippets.

@simonbengtsson
Created June 17, 2015 20:55
Show Gist options
  • Select an option

  • Save simonbengtsson/904d4476f11560be8e2d to your computer and use it in GitHub Desktop.

Select an option

Save simonbengtsson/904d4476f11560be8e2d to your computer and use it in GitHub Desktop.
'use strict';
var gulp = require('gulp');
var PUBLIC_PATH = "../parse/public";
gulp.task('default', ['develop']);
gulp.task('develop', ['testing']);
gulp.task('build', ['testing']);
gulp.task('testing', function () {
console.log("Success!");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment