博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Grunt] grunt.template
阅读量:5025 次
发布时间:2019-06-12

本文共 801 字,大约阅读时间需要 2 分钟。

/** * Created by Answer1215 on 11/15/2014. */module.exports = function(grunt){    grunt.initConfig({        files: ["'js'", "html"],        compile: "<%- files %>" //encoding charater    }); //compile: "<%= files %>" //no encoding    grunt.registerTask("default", function(){        grunt.log.writeln(grunt.config.get("compile")); //js, html        grunt.log.writeln(grunt.template.process("<%= files %>")); //js.html        grunt.log.writeln(grunt.template.today('yyyy-mm-dd')); //2014-11-15    });}

Template strings can be processed manually using the provided template functions. In addition, the config.get method (used by many tasks) automatically expands <% %> style template strings specified as config data inside the Gruntfile.

Read More:  

转载于:https://www.cnblogs.com/Answer1215/p/4100784.html

你可能感兴趣的文章
Codeforces Gym 100513M M. Variable Shadowing 暴力
查看>>
浅谈 Mybatis中的 ${ } 和 #{ }的区别
查看>>
CNN 笔记
查看>>
版本更新
查看>>
SQL 单引号转义
查看>>
start
查看>>
实现手机扫描二维码页面登录,类似web微信-第三篇,手机客户端
查看>>
PHP socket客户端长连接
查看>>
7、shell函数
查看>>
【转】Apache Jmeter发送post请求
查看>>
Nginx 基本 安装..
查看>>
【凸优化】保留凸性的几个方式(交集、仿射变换、投影、线性分式变换)
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
TFS --- GrantBackup Plan Permissions Error
查看>>
傅里叶级数与积分方程
查看>>
软工作业3:用户体验分析——以“南通大学教务管理系统微信公众号”为例
查看>>
Css:背景色透明,内容不透明之终极方法!兼容所有浏览器
查看>>
我们前端跟后端是怎么合作的
查看>>
mysql存储过程
查看>>
洛谷P2556 [AHOI2002] 黑白图像压缩 [模拟]
查看>>