Grunt 如何打包手动调用的 js , css代码


clipboard.png

clipboard.png
如图所示,这些js是手动调用的,即使写在
clipboard.png
里面也没有用,使用grunt --force 打包也没有用,无法压缩合并到一起,求助!

grunt node.js angularjs bower

芙蓉姐姐求交往 9 years, 2 months ago

我想最简单的作法就是加一个 grunt-contrib-concat task把它们都append到file end去


 grunt.initConfig({
  concat: {
    options: {
      separator: ';',
    },
    dist: {
      src: [
        'scripts/scripts.js',
        'scripts/controllers/lib/jquery-2.1.3.min.js',
        'scripts/controllers/lib/swiper.jquery.min.js',
        'scripts/controllers/lib/animo.js',
      ],
      dest: 'dist/scripts/scripts.js',
    },
  },
});

asdc110 answered 9 years, 2 months ago

可到npm上查询方法,百度一下应该有不少答案,个人觉得gulp要比grunt容易上手一些。

Horacio answered 9 years, 2 months ago

Your Answer