• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

reflog/gulp-jsoncombine: A plugin for Gulp to combine several JSON files using a ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

reflog/gulp-jsoncombine

开源软件地址(OpenSource Url):

https://github.com/reflog/gulp-jsoncombine

开源编程语言(OpenSource Language):

JavaScript 100.0%

开源软件介绍(OpenSource Introduction):

gulp-jsoncombine

NPM version Build Status Coverage Status Dependency Status

jsoncombine plugin for gulp

Usage

First, install gulp-jsoncombine as a dependency:

npm install --save-dev gulp-jsoncombine

Then, add it to your gulpfile.js:

** This plugin will collect all the json files provided to it, parse them, put them in a dictionary where the keys of that dictionary are the filenames (sans the '.json' suffix) and pass that to a processor function. That function decides how that output should look in the resulting file. **

var jsoncombine = require("gulp-jsoncombine");

gulp.src("./src/*.json")
	.pipe(jsoncombine("result.js",function(data, meta){...}))
	.pipe(gulp.dest("./dist"));

API

jsoncombine(fileName, processor)

fileName

Type: String

The output filename

processor

Type: Function

The processor function will be called with two dictionaries holding the same set of keys. The keys are the filename sans the .json suffix of a file in the gulp stream.

The first dictionary maps the filename to the string contents of the file. The second dictionary maps to a meta object containing the following keys:

  • cwd The working directory
  • base The base path
  • path The full path to the file

The function should return a new Buffer that would be written to the output file.

License

MIT License




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap