grunt自动插入您的javascript文件

时间:2017-12-06 13:09:14

标签: javascript grunt-usemin wiredep grunt-wiredep

我正在处理 usemin wiredep 。我在index.html文件中有这个:

<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<!-- build:css(.) styles/vendor.css -->
<!-- bower:css -->
<!-- endbower -->
<!-- build:css(.tmp) styles/core.css -->
<link rel="stylesheet" href="styles/core.css">
<!-- endbuild -->

如果我运行 grunt build index.html 会被修改为:

<!-- build:css(.) styles/vendor.css -->
<!-- bower:css -->
<link rel="stylesheet" href="bower_components/angular-loading-bar/build/loading-bar.css" />
<link rel="stylesheet" href="bower_components/angular-ui-select/dist/select.css" />
<link rel="stylesheet" href="bower_components/ng-notify/src/styles/ng-notify.css" />
<link rel="stylesheet" href="bower_components/components-font-awesome/css/font-awesome.css" />
<!-- endbower -->
<!-- endbuild -->
<!-- build:css(.tmp) styles/core.css -->
<link rel="stylesheet" href="styles/core.css">
<!-- endbuild -->

这很棒,但只适用于 bower:css 文件(我认为这是通过 wiredep 完成的。在我的页面下方,我有类似于JavaScript文件这也有效。 我想为我自己的JavaScript文件做这件事。目前我有大约100个,我已经手动将其放入我的 src / index.html 。构建我的应用程序后, usemin 会将我的脚本替换为非常好的已整合的uglified版本。但是当我构建时,我希望 src / index.html src / app 目录中获取所有脚本并将它们注入我的html文件。

可以这样做吗?

1 个答案:

答案 0 :(得分:0)

我设法使用grunt-injector来解决这个问题。 我将 Gruntfile 配置为使用grunt-injector,如下所示:

// Automatically inject my components into index.html
injector: {
  options: {
    template: '<%= yeoman.app %>/index.html'
  },
  html: {
    options: {
      transform: function (filePath) {
          return '<script type="text/ng-template" src="' + filePath.replace('/src/', '') + '"></script>';
      }
    },
    files: {
      '<%= yeoman.app %>/index.html': [
        '<%= yeoman.app %>/app/**/*.html'
      ]
    }
  },
  scripts: {
    options: {
      transform: function (filePath) {
          return '<script src="' + filePath.replace('/src/', '') + '"></script>';
      }
    },
    files: {
      '<%= yeoman.app %>/index.html': [
        '<%= yeoman.app %>/app/**/*.module.js',
        '<%= yeoman.app %>/app/**/*.js'
      ]
    }
  },
  styles: {
    options: {
      transform: function (filePath) {
          var media = filePath.indexOf('print') > -1 ? 'print' : 'screen';
          return '<link rel="stylesheet" media="' + media + '" href="' + filePath.replace('/.tmp/', '') + '" />';
      }
    },
    files: {
      '<%= yeoman.app %>/index.html': [
        '.tmp/styles/**/*.css'
      ]
    }
  }
},

然后在我的 index.html 中,我只是将注入器注释如下:

  <!-- injector:css -->
  <!-- endinjector -->

将其转换为:

  <!-- injector:css -->
  <link rel="stylesheet" media="screen" href="styles/core.css" />
  <link rel="stylesheet" media="print" href="styles/print.css" />
  <!-- endinjector -->

就是这样。