foundation-ultimate
Version:
The Ultimate Foundation Package with both FoundationApps and Foundation Sites Included
32 lines (30 loc) • 867 B
JavaScript
/*
=============================================================
= Foundation Utimate =
= http://github.com/relution-developments/foundation-remix =
= --------------------------------------------------------- =
= Copyright (c) 2016 - Relution Developments Ltd =
= Licensed under the MIT license. =
= @author JayDemitri =
=============================================================
*/
;
/*
Libraries
---------
*/
var gulp = require("gulp"),
gutil = require("gulp-util"),
gconfig = require("../gulp-config"),
pkg = gconfig.pkg;
/*
Our Tasks
---------
Test
*/
var test = function () {
return gutil.log(pkg.name);
};
module.exports = {
test: test
};