grunt-contrib-uglify icon indicating copy to clipboard operation
grunt-contrib-uglify copied to clipboard

Compress the entire file, the result will be stopped after the 1 files are compressed.

Open shanda506365 opened this issue 9 years ago • 0 comments

grunt.initConfig({
        uglify: {           
            build: {             
               files: [{
                    expand: true,
                    cwd: 'src/',
                    src: ['*.js'],
                    dest: 'src/',
                    extDot: 'last',
                    ext:'.min.js'
                }]
            }
        }
    });

I would like to compress all the JS files in the target folder to the publication directory, but always can only generate a file

shanda506365 avatar Jul 10 '15 06:07 shanda506365