Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Commit

Permalink
Merge c63cba4 into 10bf436
Browse files Browse the repository at this point in the history
  • Loading branch information
greenkeeper[bot] committed May 14, 2019
2 parents 10bf436 + c63cba4 commit 3ed9afa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion lib/plist.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,12 @@ async function updatePlistFile (plist, updatedFields, binary = true, mustExist =
}
}

export { parsePlistFile, updatePlistFile };
function createBinaryPlist (data) {
return bplistCreate(data);
}

function parseBinaryPlist (data) {
return bplistParse.parseBuffer(data);
}

export { parsePlistFile, updatePlistFile, createBinaryPlist, parseBinaryPlist };
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"@babel/runtime": "^7.0.0",
"archiver": "^1.3.0",
"bluebird": "^3.5.1",
"bplist-creator": "^0.0.7",
"bplist-parser": "^0.1.0",
"bplist-creator": "^0",
"bplist-parser": "^0",
"extract-zip": "^1.6.0",
"glob": "^7.1.2",
"jimp": "^0.6.4",
Expand Down

0 comments on commit 3ed9afa

Please sign in to comment.