标签:operator find row bool rod dir oge pre tac
In this exercise, you will continue to learn to use Grunt, the task runner. You will configure the Grunt file with a set of additional tasks to build your web project. At the end of this exercise, you will be able to:
,
copy: {
html: {
files: [
{
//for html
expand: true,
dot: true,
cwd: ‘./‘,
src: [‘*.html‘],
dest: ‘dist‘
}]
},
fonts: {
files: [
{
//for font-awesome
expand: true,
dot: true,
cwd: ‘node_modules/font-awesome‘,
src: [‘fonts/*.*‘],
dest: ‘dist‘
}]
}
},
clean: {
build: {
src: [ ‘dist/‘]
}
}
In this exercise you have learnt how to configure a Grunt file to perform several tasks. You were able to build a distribution folder for your web project.
标签:operator find row bool rod dir oge pre tac
原文地址:https://www.cnblogs.com/marcocao/p/9087521.html