You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now my Problem is when i merge all bower files then except address-picker all files merge successfully but not address-picker help me that
it is the issue of "addresspicker": "*" or it is the issue of something else ?
This is my gulp file
Gulpfile.js
'use strict';
/**
* ======================START===========================
*/
/**
* [gulp initilize all modules which we will use in our project]
* @type {[nothing]}
*/
var gulp = require('gulp'),
sass = require('gulp-ruby-sass'),
autoprefixer = require('gulp-autoprefixer'),
minifycss = require('gulp-minify-css'),
jshint = require('gulp-jshint'),
nodemon = require('gulp-nodemon'),
uglify = require('gulp-uglify'),
imagemin = require('gulp-imagemin'),
rename = require('gulp-rename'),
concat = require('gulp-concat'),
notify = require('gulp-notify'),
cache = require('gulp-cache'),
plugins = require("gulp-load-plugins")({
pattern: ['gulp-*', 'gulp.*', 'main-bower-files'],
replaceString: /\bgulp[\-.]/
}),
//livereload = require('gulp-livereload'),
del = require('del');
/**
* [in this section we do all JS related task means
* here we are doing JS TO .MIN JS and multiple js combined in single js]
* @param {[js]}
* @return {[.min js]}
*/
gulp.task('bowerscripts', function() {
// var jsFiles = ['app/scripts/**/*.js'];
return gulp.src(plugins.mainBowerFiles())
// .pipe(jshint('.jshintrc'))
// .pipe(jshint.reporter('default'))
.pipe(plugins.filter('*.js'))
.pipe(plugins.concat('vendor.js'))
.pipe(gulp.dest('dist/assets/js'))
.pipe(plugins.rename({suffix: '.min'}))
.pipe(plugins.uglify())
.pipe(gulp.dest('dist/assets/js'))
.pipe(notify({ message: 'Scripts Bower task complete' }));
});
Hi
First of all Nice work.
plugin works well.
Now my Problem is when i merge all bower files then except address-picker all files merge successfully but not address-picker help me that
it is the issue of
"addresspicker": "*"
or it is the issue of something else ?This is my gulp file
Gulpfile.js
and this is my bower file
The text was updated successfully, but these errors were encountered: