Package.xml merger
Works in Unix like system. Windows is not tested.
npm install -g sfdc-merge-package
or
yarn globally add sfdc-merge-package
$ smp -h
Usage: smp [options]
Merge package.xml
Options:
-V, --version output the version number
-p, --packages [paths...] paths to the package.xml files (default: [])
-o, --output [path] path where to output the merged package.xml (default: "./package.xml")
-h, --help display help for command
smp -p ./package1.xml ./package2.xml -o ./combined-package.xml
var smp = require('sfdc-merge-package');
smp({
'packages':'./src/packages.xml' // path to the packages.xml
}, console.log);
- commander - The complete solution for node.js command-line interfaces, inspired by Ruby's commander.
- extendify - Deep extend with customizable behavior.
- xml2js - XML to JavaScript object converter.
SemVer is used for versioning.
- Sebastien Colladon - Initial work - scolladon
This project is licensed under the MIT License - see the LICENSE.md file for details