sfdc-merge-pps
v3.1.0
Published
Merge profile and permission set
Downloads
2
Readme
sfdc-merge-pps
Profile and Permission Set merger
Getting Started
Works in Unix like system. Windows is not tested.
Installing
npm install -g sfdc-merge-pps
or
yarn globally add sfdc-merge-pps
Usage
Command Line
$ smpps -h
Usage: smpps [options]
Merge profile and permission set
Options:
-h, --help output usage information
-V, --version output the version number
-p, --pps path to the profile or permission set
-o, --output path where to output the merged package.xml
Module
var smp = require('sfdc-merge-pps');
smp({
'pps':'./src/profile/Admin.profile' // path to the profile or permission set
})
.then(// my treatment
);
Built With
- commander - The complete solution for node.js command-line interfaces, inspired by Ruby's commander.
- xml2js - XML to JavaScript object converter.
- xmlbuilder - An XML builder for node.js
Versioning
SemVer is used for versioning.
Authors
- Sebastien Colladon - Initial work - scolladon
License
This project is licensed under the MIT License - see the LICENSE.md file for details