77 lines
2.2 KiB
JavaScript
77 lines
2.2 KiB
JavaScript
/*******************************************************************************
|
|
* Copyright (c) 2015-2018 Red Hat, Inc.
|
|
* This program and the accompanying materials are made
|
|
* available under the terms of the Eclipse Public License 2.0
|
|
* which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
*
|
|
* SPDX-License-Identifier: EPL-2.0
|
|
*
|
|
* Contributors:
|
|
* Red Hat, Inc. - initial API and implementation
|
|
*******************************************************************************/
|
|
|
|
'use strict';
|
|
|
|
var path = require('path');
|
|
var gulp = require('gulp');
|
|
var conf = require('./conf');
|
|
|
|
var browserSync = require('browser-sync');
|
|
var browserSyncSpa = require('browser-sync-spa');
|
|
|
|
var middleware = require('./proxy');
|
|
var util = require('util');
|
|
|
|
|
|
function browserSyncInit(baseDir, browser) {
|
|
browser = browser === undefined ? 'default' : browser;
|
|
|
|
var routes = null;
|
|
if(baseDir === conf.paths.src || (util.isArray(baseDir) && baseDir.indexOf(conf.paths.src) !== -1)) {
|
|
routes = {
|
|
'/node_modules': 'node_modules'
|
|
};
|
|
}
|
|
|
|
var server = {
|
|
baseDir: baseDir,
|
|
middleware: middleware,
|
|
routes: routes
|
|
};
|
|
|
|
/*
|
|
* You can add a proxy to your backend by uncommenting the line below.
|
|
* You just have to configure a context which will we redirected and the target url.
|
|
* Example: $http.get('/users') requests will be automatically proxified.
|
|
*
|
|
* For more details and option, https://github.com/chimurai/http-proxy-middleware/blob/v0.0.5/README.md
|
|
*/
|
|
// server.middleware = proxyMiddleware('/users', {target: 'http://jsonplaceholder.typicode.com', proxyHost: 'jsonplaceholder.typicode.com'});
|
|
|
|
browserSync.instance = browserSync.init({
|
|
startPath: '/',
|
|
server: server,
|
|
browser: browser
|
|
});
|
|
}
|
|
|
|
browserSync.use(browserSyncSpa({
|
|
selector: '[ng-app]'// Only needed for angular apps
|
|
}));
|
|
|
|
gulp.task('serve', ['watch'], function () {
|
|
browserSyncInit([path.join(conf.paths.tmp, '/serve'), conf.paths.src]);
|
|
});
|
|
|
|
gulp.task('serve:dist', ['build'], function () {
|
|
browserSyncInit(conf.paths.dist);
|
|
});
|
|
|
|
gulp.task('serve:e2e', ['inject'], function () {
|
|
browserSyncInit([conf.paths.tmp + '/serve', conf.paths.src], []);
|
|
});
|
|
|
|
gulp.task('serve:e2e-dist', ['build'], function () {
|
|
browserSyncInit(conf.paths.dist, []);
|
|
});
|