├── .circleci ├── config.yml └── greenkeeper ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .images └── vscodeScreenshot.png ├── .nycrc ├── LICENSE ├── README.md ├── appveyor.yml ├── bin ├── run └── run.cmd ├── messages └── cmdt.json ├── package.json ├── src ├── commands │ └── cmdt │ │ ├── csv │ │ └── convert.ts │ │ └── field │ │ └── list.ts └── index.ts ├── test ├── mocha.opts ├── test.js └── tsconfig.json ├── tsconfig.json └── tslint.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/greenkeeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/.circleci/greenkeeper -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/vscodeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/.images/vscodeScreenshot.png -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/.nycrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /messages/cmdt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/messages/cmdt.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/cmdt/csv/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/src/commands/cmdt/csv/convert.ts -------------------------------------------------------------------------------- /src/commands/cmdt/field/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/src/commands/cmdt/field/list.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shunkosa/sfdx-cmdt-plugin/HEAD/tslint.json --------------------------------------------------------------------------------