manifest-ios

0.1.2 • Public • Published

manifest-ios

Update your iOS mobile application manifest (version, bundle idenfifier, ...).

Install

$ npm install --save manifest-ios

Quickstart

var assert = require('assert');
var path = require('path');
 
var iOSManifest = require('manifest-ios');
 
var ios = new iOSManifest();
ios.load({ file: path.join(__dirname, "Info.plist") }, function(err){
    ios.version = "2.5.6.7";
    ios.bundleIdentifier = "com.test.sample";
    ios.displayName = "Sample";
    ios.save({ file: path.join(__dirname, "Info.Updated.plist") }, function(err) {
        console.log("DONE");
    })
})

Other manifests

Copyright and license

MIT © Aloïs Deniel

Package Sidebar

Install

npm i manifest-ios

Weekly Downloads

1

Version

0.1.2

License

MIT

Last publish

Collaborators

  • aloisdeniel