1

我正在使用grunt-ng-annotate自动注入依赖项,以防止它们被缩小。我使用了以下任务:

ngAnnotate: {
        app:{
                files: [{
                expand: true,
                src: ['**/*.js', '!**/*.annotated.js'],
                ext: '.annotated.js',
                extDot: 'last'
              }]
            }
    }

但我的 grunt 任务无法获取任何文件:

运行“ngAnnotate:dist”(ngAnnotate)任务

No files provided to the ngAnnotate task.

Done, without errors.


Execution Time (2016-02-24 16:14:31 UTC)
loading tasks    234ms  ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 96%
ngAnnotate:dist    8ms  ▇▇▇ 3%
Total 243ms

我使用了一个新的 yeoman 生成器并生成了一个项目并在其中一个控制器上方添加了 /* @ngInject */

下面是我的文件夹结构 在此处输入图像描述

4

0 回答 0