簡體   English   中英

Gulp插件順序

[英]Gulp Plugin Order

我正在使用Gulp連接我的插件,但它們似乎以錯誤的順序縮小了,導致我的應用程序中斷。 我正在使用gulp-order插件,我相信我使用的正確。 為了進行測試,我禁用了uglify()。 但是,生成的文件始終以Angular開頭,而不是jQuery。 任何幫助將不勝感激!

...
//Gulp-order to make sure we load things correctly
var order = require('gulp-order');
...
var pluginOrder = [
  'src/bower_components/jquery/dist/jquery.js',
  'src/bower_components/bootstrap/dist/js/bootstrap.js',
  'src/bower_components/angular/angular.js',
  'src/bower_components/angular-route/angular-route.js',
  'src/bower_components/angular-animate/angular-animate.js',
  'src/bower_components/angular-sanitize/angular-sanitize.js',
  'src/bower_components/angular-bootstrap/ui-bootstrap.js',
  'src/bower_components/angular-bootstrap/ui-bootstrap-tpls.js',
  'src/bower_components/**/*.js',
  '!src/bower_components/**/*.min.js'
];  //make sure everything loads in the right order

gulp.task('squish-jquery', function() {
  return gulp.src( 'src/bower_components/**/*.js' )
    .pipe(ignore.exclude([ "**/*.map" ]))
    .pipe(order( pluginOrder )).on('error', gutil.log)
    //.pipe(plugins.uglify().on('error', gutil.log))
    .pipe(plugins.concat('jquery.plugins.min.js'))
    .pipe(gulp.dest('build')).on('error', gutil.log);
});

串聯文件jquery.plugins.min.js的開頭:

/**
 * @license AngularJS v1.3.15
 * (c) 2010-2014 Google, Inc. http://angularjs.org
 * License: MIT
 */
(function(window, angular, undefined) {'use strict';

/* jshint maxlen: false */

/**
 * @ngdoc module
 * @name ngAnimate
 * @description
 *
 * The `ngAnimate` module provides support for JavaScript, CSS3 transition and CSS3 keyframe animation hooks within existing core and custom directives.
 *
 * <div doc-module-components="ngAnimate"></div>
 *
 * # Usage
 *
 * To see animations in action, all that is required is to define the appropriate CSS classes
 * or to register a JavaScript animation via the `myModule.animation()` function. The directives that support animation automatically are:
 * `ngRepeat`, `ngInclude`, `ngIf`, `ngSwitch`, `ngShow`, `ngHide`, `ngView` and `ngClass`. Custom directives can take advantage of animation
 * by using the `$animate` service.
 *
 * Below is a more detailed breakdown of the supported animation events provided by pre-existing ng directives:
 *
 * |

我從沒使用過gulp-order,但是我只是按以下順序串聯它:

gulp.task('js', function(done) {
 return gulp.src([
  './bower_components/angular/angular.js',
  './bower_components/angular-bootstrap/ui-bootstrap.js',
  './bower_components/angular-bootstrap/ui-bootstrap-tpls.js',
  './bower_components/angular-collection/angular-collection.js',
  './assets/js/shopApp.js',
  './assets/js/**/*.js'
 ])
     .pipe(concat('all.js'))
  //.pipe(uglify())
  //.pipe(sourcemaps.write())
     .pipe(gulp.dest('public/js/'))
     .pipe(notify('js updated!!'));
});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM