├── .vscode └── settings.json ├── README.md ├── appveyor.yml ├── bin ├── run └── run.cmd ├── images ├── Screenshot 2018-10-28 at 21.47.43.png ├── Screenshot 2018-10-28 at 21.48.12.png ├── Screenshot 2018-10-28 at 21.48.34.png ├── Screenshot 2018-10-28 at 21.49.12.png └── Screenshot 2018-10-28 at 21.49.34.png ├── npm-shrinkwrap.json ├── oclif.manifest.json ├── package.json ├── src ├── commands │ └── metadata │ │ └── profiles │ │ ├── convert.ts │ │ ├── merge.ts │ │ └── split.ts ├── index.ts └── shared │ └── config.json ├── test ├── commands │ └── metadata │ │ └── split.test.ts ├── data │ └── profiles │ │ └── Admin.profile ├── helpers │ └── init.js ├── mocha.opts └── tsconfig.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /images/Screenshot 2018-10-28 at 21.47.43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/images/Screenshot 2018-10-28 at 21.47.43.png -------------------------------------------------------------------------------- /images/Screenshot 2018-10-28 at 21.48.12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/images/Screenshot 2018-10-28 at 21.48.12.png -------------------------------------------------------------------------------- /images/Screenshot 2018-10-28 at 21.48.34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/images/Screenshot 2018-10-28 at 21.48.34.png -------------------------------------------------------------------------------- /images/Screenshot 2018-10-28 at 21.49.12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/images/Screenshot 2018-10-28 at 21.49.12.png -------------------------------------------------------------------------------- /images/Screenshot 2018-10-28 at 21.49.34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/images/Screenshot 2018-10-28 at 21.49.34.png -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /oclif.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/oclif.manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/metadata/profiles/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/src/commands/metadata/profiles/convert.ts -------------------------------------------------------------------------------- /src/commands/metadata/profiles/merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/src/commands/metadata/profiles/merge.ts -------------------------------------------------------------------------------- /src/commands/metadata/profiles/split.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/src/commands/metadata/profiles/split.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/shared/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/src/shared/config.json -------------------------------------------------------------------------------- /test/commands/metadata/split.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/test/commands/metadata/split.test.ts -------------------------------------------------------------------------------- /test/data/profiles/Admin.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/test/data/profiles/Admin.profile -------------------------------------------------------------------------------- /test/helpers/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/test/helpers/init.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodossDev/sfdx-profiles-splitter/HEAD/yarn.lock --------------------------------------------------------------------------------