47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
/*******************************************************************************
|
|
* Copyright (c) 2015-2018 Red Hat, Inc.
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
* which accompanies this distribution, and is available at
|
|
* http://www.eclipse.org/legal/epl-v10.html
|
|
*
|
|
* Contributors:
|
|
* Red Hat, Inc. - initial API and implementation
|
|
*******************************************************************************/
|
|
|
|
var gutil = require('gulp-util');
|
|
|
|
/**
|
|
* The main paths of your project handle these with care
|
|
*/
|
|
exports.paths = {
|
|
src: 'src',
|
|
dist: 'target/dist',
|
|
tmp: '.tmp',
|
|
e2e: 'e2e'
|
|
};
|
|
|
|
/**
|
|
* Wiredep is the lib which inject bower dependencies in your project
|
|
* Mainly used to inject script tags in the index.html but also used
|
|
* to inject css preprocessor deps and js files in karma
|
|
*/
|
|
exports.wiredep = {
|
|
exclude: [/bootstrap\.js/, /bootstrap\.css/, /bootstrap\.css/, /foundation\.css/],
|
|
directory: 'bower_components'
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
* Common implementation for an error handler of a Gulp plugin
|
|
*/
|
|
exports.errorHandler = function(title) {
|
|
'use strict';
|
|
|
|
return function(err) {
|
|
gutil.log(gutil.colors.red('[' + title + ']'), err.toString());
|
|
this.emit('end');
|
|
};
|
|
};
|