foundation-ultimate
Version:
The Ultimate Foundation Package with both FoundationApps and Foundation Sites Included
33 lines (30 loc) • 1.03 kB
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"),
bowerLocation = require("../../.bowerrc");
var angular = function () {
// Read Synchrously
var fs = require("fs");
console.log("\n *START* \n");
var content = fs.readFileSync("../../.bowerrc");
console.log("Output Content : \n"+ content);
console.log("\n *EXIT* \n");
console.log(bowerLocation.directory);
};
module.exports = {
angular: angular
};