blob: 620513779aaab5854f075e2f30750a96efbaaac8 [file] [log] [blame]
Matteo Scandolo686547a2017-08-08 13:05:25 -07001
2/*
3 * Copyright 2017-present Open Networking Foundation
4
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18
Matteo Scandoloa5d03d52016-07-21 11:35:46 -070019/*eslint-env node */
20(function () {
21
22 'use strict';
23 const gulp = require('gulp');
24 const uglify = require('gulp-uglify');
25 const concat = require('gulp-concat');
26 const wiredep = require('wiredep');
27 const del = require('del');
28
29 module.exports = function(options){
30
31 gulp.task('cleanVendor', function(){
32 return del(
33 [
34 `${options.ngXosVendor}/ngXosVendor.min.js`
35 ],
36 {force: true}
37 );
38 });
39
40 gulp.task('vendor', ['cleanVendor'], function(){
41 const bowerDeps = wiredep().js;
42 return gulp.src(bowerDeps)
43 .pipe(concat('ngXosVendor.min.js'))
44 .pipe(uglify())
45 .pipe(gulp.dest(options.ngXosVendor));
46 });
47 };
48})();