Skip to content
This repository has been archived by the owner on Oct 23, 2022. It is now read-only.

Contributing

Matthias Rolke edited this page Jul 20, 2020 · 7 revisions

lib/describe-metadata-result.json is being used for offline operations (e.g. the changeset command) that are not related to any remote. Therefore i created a developer edition and enabled as many features as possible. To update lib/describe-metadata-result.json for a newer API version run:

$ force-dev-tool fetch
$ force-dev-tool info | jq '.describeMetadataResult' > /tmp/describe-metadata-result.json
$ cp /tmp/describe-metadata-result.json ./lib/describe-metadata-result.json
$ # sort `metadataObjects` array by `xmlName` property
$ jq '.metadataObjects|=sort_by(.xmlName)' /tmp/describe-metadata-result.json > ./lib/describe-metadata-result.json
$ npm run fmt
Clone this wiki locally