我是 Grunt 的新手。在这个 Gruntfile 中使用smoosher,我试图在我的 HTML 中插入所有 CSS 和 Javascript 资源:
module.exports = function ( grunt ) {
grunt.initConfig({
smoosher: {
files: {
'page1-dist.html': 'page1.html'
}
}
});
grunt.loadNpmTasks( 'grunt-html-smoosher' );
grunt.registerTask( 'default', [ 'smoosher' ] );
};
但它什么也没做。它不会生成任何page1-dist.html
文件。这是我在运行时得到的唯一输出grunt
:
Running "smoosher:files" (smoosher) task
Done, without errors.
知道有什么问题吗?