Skip to content

Instantly share code, notes, and snippets.

View prem16's full-sized avatar
🏠
Working from home

Prem Murmu prem16

🏠
Working from home
View GitHub Profile
@prem16
prem16 / helix-deployment-local-gulpfile.js
Created November 11, 2019 11:40 — forked from brijbaroda/helix-deployment-local-gulpfile.js
Gulp Js file to deploy Helix Principle based solution on a local developer machine. Rename the file to gulpfile.js and place it in Visual studio solution root folder
var gulp = require("gulp");
var msbuild = require("gulp-msbuild");
var debug = require("gulp-debug");
var foreach = require("gulp-foreach");
var runSequence = require("run-sequence");
var gulpConfig = require("./gulp-config.js")();
module.exports.config = gulpConfig;
// From Habitat
gulp.task("Publish-All-Projects", function (callback) {