README
app-to-ipa
Turn an iOS .app
folder into a .ipa
.
Example
const toIpa = require('app-to-ipa');
toIpa('/tmp/App.app', (err, ipa) => {
console.log(ipa); // /tmp/App-1461694788429.ipa
});
API
toIpa(appDir, cb)
License
MIT
Turn an iOS `.app` folder into a `.ipa`.
<script type="module">
import appToIpa from 'https://cdn.skypack.dev/app-to-ipa';
</script>
Turn an iOS .app
folder into a .ipa
.
const toIpa = require('app-to-ipa');
toIpa('/tmp/App.app', (err, ipa) => {
console.log(ipa); // /tmp/App-1461694788429.ipa
});
MIT