警告:试图加载角度不止一次。 - GRUNT

时间:2016-01-30 22:31:56

标签: angularjs gruntjs sails.js bower pipeline

我的管道看起来像这样:

// Client-side javascript files to inject in order
// (uses Grunt-style wildcard/glob/splat expressions)
var jsFilesToInject = [

  // Dependencies like sails.io.js, jQuery, or Angular
  'js/dependencies/sails.io.js',
  'js/bower_components/angular/*.js',
  'js/bower_components/**/*.js',

  // All of the rest of your client-side js files
  // will be injected here in no particular order.
  'js/modules/app.js',
  'js/modules/auth/services/accessLevels.js',
  'js/**/*.js'
];

和我的bower.json:

{
  "name": "myapp",
  "version": "0.0.1",
  "dependencies": {
    "angular": "1.3.7",
    "angular-cookies": "1.3.7",
    "angular-ui-router": "0.2.15"
  },
  "resolutions": {
    "angular": "1.3.7"
  }
}

我认为这个问题是因为它注入angular.js和angular.min.js,用grunt解决这个问题的方法是什么?

0 个答案:

没有答案