javascript - 如何在 yeoman/grunt 项目中自动包含脚本?

标签 javascript gruntjs yeoman grunt-usemin

我有一个正在运行的自耕农项目。我正在使用 grunt-usemin。

为了包含 JavaScript,我在 index.html 中执行此操作:

<!-- build:js scripts/includes.js -->
<script src="/bower_components/jquery/jquery.min.js"></script>
<script src="/bower_components/underscore/underscore-min.js"></script>
<script src="/bower_components/angular/angular.js"></script>
<script src="/bower_components/angular-route/angular-route.min.js"></script>
<script src="/bower_components/angular-resource/angular-resource.min.js"></script>
<script src="/bower_components/angular-sanitize/angular-sanitize.min.js"></script>
<script src="/bower_components/angular-ui-date/src/date.js"></script>
<script src="/bower_components/angulartics/src/angulartics.js"></script>
<script src="/bower_components/angulartics/src/angulartics-ga.js"></script>
<script src="/bower_components/jquery-ui/ui/jquery-ui.js"></script>
<script src="/assets/vendor/bootstrap.2.3.1.min.js"></script>
... a few more libs like that

<script src="/scripts/config.processed.js"></script>
<script src="/scripts/app.js"></script>

<script src="/scripts/controllers/first_controller.js"></script>
<script src="/scripts/controllers/second_controller.js"></script>
<script src="/scripts/controllers/third_controller.js"></script>
<script src="/scripts/controllers/fourth_controller.js"></script>
<script src="/scripts/controllers/fith_controller.js"></script>
<script src="/scripts/controllers/sixth_controller.js"></script>
<script src="/scripts/controllers/seventh_controller.js"></script>
... 20 more like that

<script src="/scripts/directives/first_directive.js"></script>
<script src="/scripts/directives/second_directive.js"></script>
<script src="/scripts/directives/third_directive.js"></script>
... 10 more like that

<script src="/scripts/services/first_service.js"></script>
<script src="/scripts/services/second_service.js"></script>
...

<script src="/scripts/filters/first_filter.js"></script>
<script src="/scripts/filters/second_filter.js"></script>
...
<!-- endbuild -->

这很冗长。我希望能够做这样的事情:

index.html中:

<!-- build:js scripts/includes.js -->

<!-- library includes as before -->
<script src="/bower_components/jquery/jquery.min.js"></script> 
<script src="/bower_components/underscore/underscore-min.js"></script>
...

<!-- Replace application includes with this: -->
<script src="<% '/scripts/**/*.js' %>"></script>

<!-- endbuild -->

最佳答案

我用了grunt-include-source

安装它:

npm install grunt-include-source --save-dev

在 Gruntfile 中:

在initConfig之前加载它:

module.exports = function (grunt) {
  ...
  grunt.loadNpmTasks('grunt-include-source');

在 initConfig 中配置 includeSource 本身:

grunt.initConfig({
  ...,
  includeSource: {
      options: {
        basePath: 'app',
        baseUrl: '/',
      },
      server: {
        files: {
          '.tmp/index.html': '<%= yeoman.app %>/index.html'
        }
      },
      dist: {
        files: {
          '<%= yeoman.dist %>/index.html': '<%= yeoman.app %>/index.html'
        }
      }
    }

将此任务添加到您想要的位置(这里,我将其添加到构建任务中):

grunt.registerTask('build', [
    'clean:dist',
    'includeSource:dist',
    'useminPrepare',
    ...

将其添加到监视任务中:

watch: {
  ...,
  includeSource: {
    files: ['<%= yeoman.app %>/index.html'],
    tasks: ['includeSource:server']
  }

更改 useminPrepare(如果您使用 yeoman)

useminPrepare: {
  // changed from app to dist, to take index.html processed by includeSource in dist
  html: '<%= yeoman.dist %>/index.html',
  options: {
    dest: '<%= yeoman.dist %>'
  }
},

我习惯使用子任务:dist 和 server 在不同的目录中生成index.html。

<小时/>

编辑:如何将 JavaScript 包含在 index.html 中:

<!-- build:js({.tmp,dist,app}) /scripts/application.js -->
<!-- vendor, external -->
<script src="/bower_components/jquery/jquery.min.js"></script>
<script src="/bower_components/underscore/underscore-min.js"></script>
<script src="/assets/vendor/underscore.extentions.js"></script>
<script src="/bower_components/angular/angular.js"></script>
<script src="/bower_components/select2/select2.js"></script>
<script src="/bower_components/angular-ui-select2/src/select2.js"></script>

<!-- entry point -->
<script src="/scripts/config.processed.js"></script>
<script src="/scripts/app.js"></script>

<!--include everything in scripts/ except files directly inside scripts (without subdirectory) -->
<!-- include: "type": "js", "files": ["scripts/**/*.js", "!scripts/*.js"] -->

<!-- endbuild -->

如果您想包含所有脚本,请执行以下操作:

<!-- include: "type": "js", "files": "scripts/**/*.js" -->

关于javascript - 如何在 yeoman/grunt 项目中自动包含脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21232889/

相关文章:

javascript - 使用 javascript .net 限制文本框中的字符类型和粘贴

javascript - 在 Node.js 中替换 $.ajax()

node.js - 如何配置 Gruntserve/livereload 来组合 Mustache 模板

linux - 在 NPM/Yeoman 中作为 sudo 生成命令

javascript - Yeoman - 将日志记录延迟到任务完成后

javascript - 如何找到光标所在的单词

javascript - AddFavorite JS 不适用于 chrome

javascript - Angularjs 缩小使用 grunt uglify 导致 js 错误

angularjs - 如何在我的 Angular JS 应用程序中正确设置 checklist-model 指令?

jquery-ui - 如何将 jquery ui 与 Bower 一起使用?