파일을 무시하는 방법 grunt uglify 배경 약 30 분 전부터 grunt를 사용하기 시작했습니다. 그러니 참아주세요. 그러나 내 js를 살펴보고 모든 것을 하나의 파일로 압축하는 다소 간단한 스크립트가 있습니다. 암호 "use strict"; module.exports = function (grunt) { // load all grunt tasks require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks); grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), uglify: { options: { beautify: true, report: 'gzip' }, build: { src..