添加angular-leaflet-directive后,Grunt构建失败

时间:2014-08-13 22:35:24

标签: javascript angularjs leaflet

我刚刚在我的项目中添加了angular-leaflet-directive,当我用Grunt构建它时,它现在失败了。使用凉亭添加了依赖性。这个项目是使用Yeoman角度发生器建造的。

这里我在我的app.js

中包含了传单指令
angular
  .module('statsApp', [
    'ngCookies',
    'ngResource',
    'ngSanitize',
    'ngRoute',
    'leaflet-directive'
  ])

然而就目前而言,我只是在我看来<leaflet></leaflet>只是为了让事情开始。

当Grunt构建失败时,我收到此错误消息

    Error: [$injector:modulerr] Failed to instantiate module statsApp due to:
    Error: [$injector:modulerr] Failed to instantiate module leaflet-directive due to:
    Error: [$injector:nomod] Module 'leaflet-directive' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.

1 个答案:

答案 0 :(得分:1)

这个SO帖子解决了我的问题。它并非特定于我添加的模块,但特定于Karma测试失败,因为他们不了解传单指令模块。

AngularJS Error: Module ngAnimate is not available