Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

there are some js files in static/js/

    1. a.js
    2. b.js
    3. c.js   

how to config grunt.js to get below files:

    1. a.min.js
    2. b.min.js
    3. c.min.js

as far, I have to type specific file name:

  min: {
    dist: {
    src:  'js/**/*.js',
    dest: 'js/min/xxx.min.js'
   }
 }

tks~

thank @DavidHyogo very much~

share|improve this question
1  
Currently there is no out-of-the box support for this (see How to minify separate files and do not combine them into one file?). You'll have to generate configuration for min task dynamically (with lots of targets) or create your own task that uses min helper... I'll try to post a solution later... – Dmitry Pashkevich Nov 16 '12 at 12:59
2  
@looping You need to accept some answer, you're accept rate is 0%... – Sindre Sorhus Dec 3 '12 at 3:34
1  
@DmitryPashkevich I'm not sure I agree. You can run several many tasks within the min task. See my answer below. – DavidHyogo Feb 2 at 10:24
1  
@DavidHyogo the question was, how to not have to manually enlist all the files but have a configuration like Inge one in the original question work – Dmitry Pashkevich Feb 2 at 13:43
*Inge = the (predictive text, sorry :)) – Dmitry Pashkevich Feb 2 at 14:17
show 2 more comments

5 Answers

up vote 2 down vote accepted

Had the same problem and found a solution that would automatically minify all my scripts separately:

uglify: {
      build: {
        files: [{
            expand: true,
            src: '**/*.js',
            dest: 'build/scripts',
            cwd: 'app/scripts'
        }]
      }
    }
share|improve this answer

In grunt 0.4 you can specify multiple dest/src pairs like this:

uglify: {
    dist: {
        files: {
            'dist/main.js': 'src/main.js',
            'dist/widget.js': 'src/widget.js'
        }
    }
}
share|improve this answer
Some people should find expandMapping (gruntjs.com/api/grunt.file#grunt.file.expandmapping) useful, so a whole directory can be minified and its structure kept intact, without listing every JS file inside. – Greg Mar 2 at 6:59

From the grunt docs for min:

This task is a multi task, meaning that grunt will automatically iterate over all min targets if a target is not specified.

So you can do this:

  min: {
    min_a: {
       src:  'a.js',
       dest: 'a.min.js'
    },
    min_b: {
       src:  'b.js',
       dest: 'b.min.js'
    },
    min_c: {
       src:  'c.js',
       dest: 'c.min.js'
 }

There's nothing special about the name 'dist' for these tasks.

share|improve this answer

You also can use copy and grunt-mindirect.

copy: {
  dist: {
    src: 'a.js',
    dest: 'a.min.js'
  }
},
minidirect: {
  all: 'js/min/*.min.js'
}

This should work.

share|improve this answer

I guess it only matters for watch tasks.

In grunt 0.4 you can do this

  var filesA = 'a.js', filesB = 'b.js', filesC = 'c.js';

  ...

  min: {
      min_a: {
         src:  filesA,
         dest: 'a.min.js'
      },
      min_b: {
         src:  filesB,
         dest: 'b.min.js'
      },
      min_c: {
         src:  filesC,
         dest: 'c.min.js'
  }

  watch: {
      min_a: {
         files:  filesA,
         tasks: ['min:min_a']
      },
      min_b: {
         files:  filesB,
         tasks: ['min:min_b']
      },
      min_c: {
         files:  filesC,
         tasks: ['min:min_c']
      }
  }

After that just start grunt watch and all will be fine automagically.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.