0.2.0 • Published 2 years ago

plist-merge-patch v0.2.0

Weekly downloads
3,988
License
Apache-2.0
Repository
github
Last release
2 years ago

plist-merge-patch

Info.plist merging module. Inspired by json-merge-patch.

The tool is still a baby. We gladly accept unit test contributions.

Usage

var fs = require("fs");
var plistmergepatch = require("plist-merge-patch");

var session = new plistmergepatch.PlistSession(console);
session.load({
	name: "base",
	read: function() { return fs.readFileSync("Info.plist").toString(); }
});
session.patch({
	name: "patch",
	read: function() { return fs.readFileSync("Patch.plist").toString(); }
});
var result = session.build();
fs.writeFileSync("Result.plist", result);

Working with the repo

$ npm install

$ npm test
$ npm test
$ npm test

$ npm publish
0.2.0

2 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.9

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago