0.0.3 • Published 7 years ago

gulp-front-end-builds v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

gulp-front-end-builds Build Status

Gulp plugin to deploy a JS application to a https://github.com/tedconf/front_end_builds(Front End Builds)-enabled server

Install

$ npm install --save-dev gulp-front-end-builds

Usage

const gulp = require('gulp');
const frontEnd = require('gulp-front-end-builds');


gulp.task('deploy', function() {
	gulp.src('dist/index.html')
		.pipe(frontEnd({endpoint: "http://www.example.com", app: "application"}));
});

API

frontEndBuilds(options)

options

endpoint

Type: string Default: null

URL of the FrontEndBuilds server

app

Type: string Default: null

FrontEndBuilds app to target