文件名称:gulp-mustache::wavy_dash:呈现胡子模板的gulp插件
文件大小:36KB
文件格式:ZIP
更新时间:2024-02-24 10:38:37
javascript gulp gulp-plugin mustache GulpJavaScript
吞咽的胡子 胡子插件的 用法 首先,将gulp-mustache安装为开发依赖项: npm install --save-dev gulp-mustache 然后,将其添加到您的gulpfile.js : var mustache = require ( "gulp-mustache" ) ; gulp . src ( "./templates/*.mustache" ) . pipe ( mustache ( { msg : "Hello Gulp!" } ) ) . pipe ( gulp . dest ( "./dist" ) ) ; 您还可以传入表示小胡子局部及其内容的对象,作为调用mustache()的第三个参数,如下所示: 使用键/值对: gulp . src ( "./templates/*.mustache" ) . pipe ( mustache ( { msg : "Hello Gulp!" , nested_value : "I am nested." , another_value : "1 2 3" } , { } ,
【文件预览】:
gulp-mustache-master
----.jshintrc(389B)
----.gitignore(30B)
----.eslintrc(110B)
----package.json(1KB)
----package-lock.json(93KB)
----.travis.yml(66B)
----LICENSE(1KB)
----index.js(5KB)
----README.md(3KB)
----.gitattributes(11B)
----test()
--------main.js(7KB)
--------expected()
--------fixtures()
----.editorconfig(295B)
----.prettierrc(61B)