concat はすべての htm ページを取得し、それらを /templates/min/production.htm の 1 つに配置します。
私が達成しようとしているのは /templates/min/production.min.htm です。ターミナル ウィンドウにエラーは表示されません。さらに詳しい情報が必要な場合はお知らせください。
module.exports = function (grunt) {
// 1. All configuration goes here
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
controlCss: {
src: ['UI.controls/assets/css/*.css'],
dest: 'UI.controls/assets/css/min/production.css'
},
controlJs: {
src: ['UI.controls/assets/js/*.js'],
dest: 'UI.controls/assets/js/min/production.js'
},
coreJs: {
src: ['UI.core/assets/js/*.js'],
dest: 'UI.core/assets/js/min/production.js'
}
,
controlHtml: {
src: ['UI.controls/assets/templates/*.htm'],
dest: 'UI.controls/assets/templates/min/production.htm'
}
},
cssmin: {
controlCss: {
src: 'UI.controls/assets/css/min/production.css',
dest: 'UI.controls/assets/css/min/production.min.css'
}
},
uglify: {
controlJs: {
src: 'UI.controls/assets/js/min/production.js',
dest: 'UI.controls/assets/js/min/production.min.js'
},
coreJs: {
src: 'UI.core/assets/js/min/production.js',
dest: 'UI.core/assets/js/min/production.min.js'
}
},
htmlmin: {
controlHtml: {
options: {
removeComments: true,
collapseWhitespace: true
},
expand: true,
cwd: 'expand',
src: 'UI.controls/assets/templates/min/production.htm',
dest: 'UI.controls/assets/templates/min/production.min.htm'
}
}
});
// 2. Where we tell Grunt we plan to use this plug-in.
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-htmlmin');
// 3. Where we tell Grunt what to do when we type "grunt" into the terminal.
grunt.registerTask('default', ['concat', 'cssmin', 'uglify', 'htmlmin']);
};
@marioこれはあなたのやり方でコードを実行していますが、ソースファイルが見つからないようです.宛先を実行するときに取得: ソースも
これは、@mario の上に投稿したコードの実行中にターミナル ウィンドウに表示される応答です。
】4
@mario production.htmを読むとフリーズしているようです:(助けてくれてありがとう
私のうなり声のバージョンと何か関係がありますか? バージョン 4.0 が必要ですか? 私は4.5を持っています..それはまだ動作しますか? また、他にも多くのエラーがあります...それらのいずれかが、私のhtmlが縮小されていない理由に何かベルを鳴らしますか? どんな助けにも感謝します。前もって感謝します