0.2.0 • Published 1 year ago

plist-merge-patch v0.2.0

Weekly downloads
3,988
License
Apache-2.0
Repository
github
Last release
1 year 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

1 year ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.9

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago