@salesforce/plugin-custom-metadata 1.0.8 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/README.md +64 -11
- package/oclif.manifest.json +1 -1
- package/package.json +134 -119
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
### [1.0.12](https://github.com/salesforcecli/plugin-custom-metadata/compare/v1.0.11...v1.0.12) (2021-04-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* leif .yml merge [skip-validate-pr] ([9177fdc](https://github.com/salesforcecli/plugin-custom-metadata/commit/9177fdc23b42f6cd1c96ee1d34cf74093994c407))
|
|
11
|
+
|
|
12
|
+
### [1.0.11](https://github.com/salesforcecli/plugin-custom-metadata/compare/v1.0.10...v1.0.11) (2020-12-10)
|
|
13
|
+
|
|
14
|
+
### [1.0.10](https://github.com/salesforcecli/plugin-custom-metadata/compare/v1.0.8...v1.0.10) (2020-08-27)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* use npm-release-management-orb ([7154761](https://github.com/salesforcecli/plugin-custom-metadata/commit/7154761d3f0cfedc223f3a38cb7c8970f616bf22))
|
|
20
|
+
|
|
1
21
|
# 1.0.0 (2020-06-02)
|
|
2
22
|
|
|
3
23
|
|
package/README.md
CHANGED
|
@@ -7,13 +7,66 @@ Tools for working with custom metadata types and their records.
|
|
|
7
7
|
[](https://circleci.com/gh/salesforcecli/plugin-custom-metadata/tree/master)
|
|
8
8
|
[](https://github.com/salesforcecli/plugin-custom-metadata/blob/master/LICENSE.txt)
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
This is a [Salesforce CLI](https://developer.salesforce.com/tools/sfdxcli) plugin and bundled with the CLI via [salesforcedx](https://www.npmjs.com/package/salesforcedx) as of `48.18.0`.
|
|
10
|
+
This plugin is bundled with the [Salesforce CLI](https://developer.salesforce.com/tools/sfdxcli). For more information on the CLI, read the [getting started guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_intro.htm).
|
|
12
11
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
We always recommend using the latest version of these commands bundled with the CLI, however, you can install a specific version or tag if needed.
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
sfdx plugins:install custom-metadata@x.y.z
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Issues
|
|
21
|
+
|
|
22
|
+
Please report any issues at https://github.com/forcedotcom/cli/issues
|
|
23
|
+
|
|
24
|
+
## Contributing
|
|
25
|
+
|
|
26
|
+
1. Please read our [Code of Conduct](CODE_OF_CONDUCT.md)
|
|
27
|
+
2. Create a new issue before starting your project so that we can keep track of
|
|
28
|
+
what you are trying to add/fix. That way, we can also offer suggestions or
|
|
29
|
+
let you know if there is already an effort in progress.
|
|
30
|
+
3. Fork this repository.
|
|
31
|
+
4. [Build the plugin locally](#build)
|
|
32
|
+
5. Create a _topic_ branch in your fork. Note, this step is recommended but technically not required if contributing using a fork.
|
|
33
|
+
6. Edit the code in your fork.
|
|
34
|
+
7. Write appropriate tests for your changes. Try to achieve at least 95% code coverage on any new code. No pull request will be accepted without unit tests.
|
|
35
|
+
8. Sign CLA (see [CLA](#cla) below).
|
|
36
|
+
9. Send us a pull request when you are done. We'll review your code, suggest any needed changes, and merge it in.
|
|
37
|
+
|
|
38
|
+
### CLA
|
|
39
|
+
|
|
40
|
+
External contributors will be required to sign a Contributor's License
|
|
41
|
+
Agreement. You can do so by going to https://cla.salesforce.com/sign-cla.
|
|
42
|
+
|
|
43
|
+
### Build
|
|
44
|
+
|
|
45
|
+
To build the plugin locally, make sure to have yarn installed and run the following commands:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
# Clone the repository
|
|
49
|
+
git clone git@github.com:salesforcecli/plugin-custom-metadata
|
|
50
|
+
|
|
51
|
+
# Install the dependencies and compile
|
|
52
|
+
yarn install
|
|
53
|
+
yarn build
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
To use your plugin, run using the local `./bin/run` or `./bin/run.cmd` file.
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
# Run using local run file.
|
|
60
|
+
./bin/run force:cmdt
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
There should be no differences when running via the Salesforce CLI or using the local run file. However, it can be useful to link the plugin to do some additional testing or run your commands from anywhere on your machine.
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
# Link your plugin to the sfdx cli
|
|
67
|
+
sfdx plugins:link .
|
|
68
|
+
# To verify
|
|
69
|
+
sfdx plugins
|
|
17
70
|
```
|
|
18
71
|
|
|
19
72
|
# Commands
|
|
@@ -61,7 +114,7 @@ EXAMPLES
|
|
|
61
114
|
Protected
|
|
62
115
|
```
|
|
63
116
|
|
|
64
|
-
_See code: [src/commands/force/cmdt/create.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/v1.0.
|
|
117
|
+
_See code: [src/commands/force/cmdt/create.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/v1.0.12/src/commands/force/cmdt/create.ts)_
|
|
65
118
|
|
|
66
119
|
## `sfdx force:cmdt:field:create -n <string> -f Checkbox|Date|DateTime|Email|Number|Percent|Phone|Picklist|Text|TextArea|LongTextArea|Url [-p <array>] [-s <number>] [-l <string>] [-d <directory>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
67
120
|
|
|
@@ -108,7 +161,7 @@ EXAMPLES
|
|
|
108
161
|
$ sfdx force:cmdt:field:create --fieldname MyField --fieldtype Number --decimalplaces 2
|
|
109
162
|
```
|
|
110
163
|
|
|
111
|
-
_See code: [src/commands/force/cmdt/field/create.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/v1.0.
|
|
164
|
+
_See code: [src/commands/force/cmdt/field/create.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/v1.0.12/src/commands/force/cmdt/field/create.ts)_
|
|
112
165
|
|
|
113
166
|
## `sfdx force:cmdt:generate -n <string> -s <string> [-l <string>] [-p <string>] [-v PackageProtected|Protected|Public] [-i] [-d <directory>] [-r <directory>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
114
167
|
|
|
@@ -181,7 +234,7 @@ EXAMPLES
|
|
|
181
234
|
'path/to/my/cmdt/record/directory'
|
|
182
235
|
```
|
|
183
236
|
|
|
184
|
-
_See code: [src/commands/force/cmdt/generate.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/v1.0.
|
|
237
|
+
_See code: [src/commands/force/cmdt/generate.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/v1.0.12/src/commands/force/cmdt/generate.ts)_
|
|
185
238
|
|
|
186
239
|
## `sfdx force:cmdt:record:create [name=value...] -t <string> -n <string> [-l <string>] [-p <string>] [-i <directory>] [-d <directory>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
187
240
|
|
|
@@ -228,7 +281,7 @@ EXAMPLES
|
|
|
228
281
|
My_Custom_Field_1=Foo My_Custom_Field_2=Bar
|
|
229
282
|
```
|
|
230
283
|
|
|
231
|
-
_See code: [src/commands/force/cmdt/record/create.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/v1.0.
|
|
284
|
+
_See code: [src/commands/force/cmdt/record/create.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/v1.0.12/src/commands/force/cmdt/record/create.ts)_
|
|
232
285
|
|
|
233
286
|
## `sfdx force:cmdt:record:insert -f <string> -t <string> [-i <directory>] [-d <directory>] [-n <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
234
287
|
|
|
@@ -273,7 +326,7 @@ EXAMPLES
|
|
|
273
326
|
"path/to/my/cmdt/directory" --namecolumn "PrimaryKey"
|
|
274
327
|
```
|
|
275
328
|
|
|
276
|
-
_See code: [src/commands/force/cmdt/record/insert.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/v1.0.
|
|
329
|
+
_See code: [src/commands/force/cmdt/record/insert.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/v1.0.12/src/commands/force/cmdt/record/insert.ts)_
|
|
277
330
|
<!-- commandsstop -->
|
|
278
331
|
|
|
279
332
|
<!-- debugging-your-plugin -->
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.0.8","commands":{"force:cmdt:create":{"id":"force:cmdt:create","description":"creates a new custom metadata type in the current project","usage":"<%= command.id %> -n <string> [-l <string>] [-p <string>] [-v PackageProtected|Protected|Public] [-d <directory>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-custom-metadata","pluginType":"core","aliases":[],"examples":["Create a custom metadata type with developer name 'MyCustomType'; this name will also be used as the label:"," $ sfdx force:cmdt:create --typename MyCustomType","Create a protected custom metadata type with a specific label:"," $ sfdx force:cmdt:create --typename MyCustomType --label \"Custom Type\" --plurallabel \"Custom Types\" --visibility Protected"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"typename":{"name":"typename","type":"option","char":"n","description":"unique object name for the custom metadata type","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for the custom metadata type"},"plurallabel":{"name":"plurallabel","type":"option","char":"p","description":"plural version of the label value; if blank, uses label"},"visibility":{"name":"visibility","type":"option","char":"v","description":"visibility of the custom metadata type","helpValue":"(PackageProtected|Protected|Public)","options":["PackageProtected","Protected","Public"],"default":"Public"},"outputdir":{"name":"outputdir","type":"option","char":"d","description":"directory to store the newly-created custom metadata type files"}},"args":[{"name":"file"}]},"force:cmdt:generate":{"id":"force:cmdt:generate","description":"generates a custom metadata type and all its records for the provided sObject","usage":"<%= command.id %> -n <string> -s <string> [-l <string>] [-p <string>] [-v PackageProtected|Protected|Public] [-i] [-d <directory>] [-r <directory>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-custom-metadata","pluginType":"core","aliases":[],"examples":["Generate a custom metadata type from an sObject in the default target org:"," $ sfdx force:cmdt:generate --devname MyCMDT --sobjectname MySourceObject__c","Generate a custom metadata type from an sObject in the specified target org; ignore unsupported field types instead of converting them to text:"," $ sfdx force:cmdt:generate --devname MyCMDT --sobjectname MySourceObject__c --ignoreunsupported --targetusername 'alias or user email of the org containing the source type'","Generate a protected custom metadata type from an sObject in the default target org:"," $ sfdx force:cmdt:generate --devname MyCMDT --sobjectname SourceCustomObject__c --visibility Protected","Generate a protected custom metadata type with a specific label from an sObject in the default target org:"," $ sfdx force:cmdt:generate --devname MyCMDT --label \"My CMDT\" --plurallabel \"My CMDTs\" --sobjectname SourceCustomSetting__c --visibility Protected","Generate a custom metadata type from an sObject in the default target org; put the resulting type metadata file in the specified directory:"," $ sfdx force:cmdt:generate --devname MyCMDT --sobjectname SourceCustomSetting__c --typeoutputdir 'path/to/my/cmdt/directory'","Generate a custom metadata type from an sObject in the default target org; put the resulting record metadata file(s) in the specified directory:"," $ sfdx force:cmdt:generate --devname MyCMDT --sobjectname SourceCustomSetting__c --recordsoutputdir 'path/to/my/cmdt/record/directory'"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"devname":{"name":"devname","type":"option","char":"n","description":"name of the custom metadata type","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for the custom metadata type"},"plurallabel":{"name":"plurallabel","type":"option","char":"p","description":"plural version of the label value; if blank, uses label"},"visibility":{"name":"visibility","type":"option","char":"v","description":"visibility of the custom metadata type","helpValue":"(PackageProtected|Protected|Public)","options":["PackageProtected","Protected","Public"],"default":"Public"},"sobjectname":{"name":"sobjectname","type":"option","char":"s","description":"API name of the sObject source for custom metadata generation","required":true},"ignoreunsupported":{"name":"ignoreunsupported","type":"boolean","char":"i","description":"ignore unsupported field types","allowNo":false},"typeoutputdir":{"name":"typeoutputdir","type":"option","char":"d","description":"directory to store newly-created custom metadata type files","default":"force-app/main/default/objects/"},"recordsoutputdir":{"name":"recordsoutputdir","type":"option","char":"r","description":"directory to store newly-created custom metadata record files","default":"force-app/main/default/customMetadata/"}},"args":[{"name":"file"}]},"force:cmdt:field:create":{"id":"force:cmdt:field:create","description":"generate a custom metadata field based on the field type provided","usage":"<%= command.id %> -n <string> -f Checkbox|Date|DateTime|Email|Number|Percent|Phone|Picklist|Text|TextArea|LongTextArea|Url [-p <array>] [-s <number>] [-l <string>] [-d <directory>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-custom-metadata","pluginType":"core","aliases":[],"examples":["Create a metadata file for a custom checkbox field:"," $ sfdx force:cmdt:field:create --fieldname MyField --fieldtype Checkbox","Create a metadata file for a custom picklist field:"," $ sfdx force:cmdt:field:create --fieldname MyField --fieldtype Picklist --picklistvalues \"A,B,C\"","Create a metadata file for a custom number field:"," $ sfdx force:cmdt:field:create --fieldname MyField --fieldtype Number --decimalplaces 2"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"fieldname":{"name":"fieldname","type":"option","char":"n","description":"unique name for the field","required":true},"fieldtype":{"name":"fieldtype","type":"option","char":"f","description":"type of field","required":true,"helpValue":"(Checkbox|Date|DateTime|Email|Number|Percent|Phone|Picklist|Text|TextArea|LongTextArea|Url)","options":["Checkbox","Date","DateTime","Email","Number","Percent","Phone","Picklist","Text","TextArea","LongTextArea","Url"]},"picklistvalues":{"name":"picklistvalues","type":"option","char":"p","description":"comma-separated list of picklist values; required for Picklist fields"},"decimalplaces":{"name":"decimalplaces","type":"option","char":"s","description":"number of decimal places to use for Number or Percent fields","default":0},"label":{"name":"label","type":"option","char":"l","description":"label for the field"},"outputdir":{"name":"outputdir","type":"option","char":"d","description":"directory to store newly-created field definition files"}},"args":[{"name":"file"}]},"force:cmdt:record:create":{"id":"force:cmdt:record:create","description":"create a new record for a given custom metadata type in the current project","usage":"<%= command.id %> [name=value...] -t <string> -n <string> [-l <string>] [-p <string>] [-i <directory>] [-d <directory>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-custom-metadata","pluginType":"core","aliases":[],"examples":["Create a record metadata file for custom metadata type 'MyCMT' with values specified for two custom fields:"," $ sfdx force:cmdt:record:create --typename MyCMT__mdt --recordname MyRecord My_Custom_Field_1=Foo My_Custom_Field_2=Bar","Create a protected record metadata file for custom metadata type 'MyCMT' with a specific label and values specified for two custom fields:"," $ sfdx force:cmdt:record:create --typename MyCMT__mdt --recordname MyRecord --label \"My Record\" --protected true My_Custom_Field_1=Foo My_Custom_Field_2=Bar"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"typename":{"name":"typename","type":"option","char":"t","description":"API name of the custom metadata type to create a record for","required":true},"recordname":{"name":"recordname","type":"option","char":"n","description":"name for the new record","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for the new record"},"protected":{"name":"protected","type":"option","char":"p","description":"protect the record when it is in a managed package","options":["true","false"],"default":"false"},"inputdir":{"name":"inputdir","type":"option","char":"i","description":"directory to pull the custom metadata type definition from","default":"force-app/main/default/objects"},"outputdir":{"name":"outputdir","type":"option","char":"d","description":"directory to store newly-created custom metadata record files","default":"force-app/main/default/customMetadata"}},"args":[]},"force:cmdt:record:insert":{"id":"force:cmdt:record:insert","description":"create new custom metadata type records from a CSV file","usage":"<%= command.id %> -f <string> -t <string> [-i <directory>] [-d <directory>] [-n <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-custom-metadata","pluginType":"core","aliases":[],"examples":["Create record metadata files for type 'My_CMDT_Name' (from your local project) based on values in a CSV file, using 'Name' as the column that specifies the record name:"," $ sfdx force:cmdt:record:insert --filepath path/to/my.csv --typename My_CMDT_Name","Create record metadata files for type 'My_CMDT_Name' (from the specified directory) based on values in a CSV file, using 'PrimaryKey' as the column that specifies the record name:"," $ sfdx force:cmdt:record:insert --filepath path/to/my.csv --typename My_CMDT_Name --inputdir \"path/to/my/cmdt/directory\" --namecolumn \"PrimaryKey\""],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"filepath":{"name":"filepath","type":"option","char":"f","description":"path to the CSV file","required":true},"typename":{"name":"typename","type":"option","char":"t","description":"API name of the custom metadata type","required":true},"inputdir":{"name":"inputdir","type":"option","char":"i","description":"directory to pull the custom metadata type definition from","default":"force-app/main/default/objects"},"outputdir":{"name":"outputdir","type":"option","char":"d","description":"directory to store newly-created custom metadata record files","default":"force-app/main/default/customMetadata"},"namecolumn":{"name":"namecolumn","type":"option","char":"n","description":"column that is used to determine the name of the record","default":"Name"}},"args":[]}}}
|
|
1
|
+
{"version":"1.0.12","commands":{"force:cmdt:create":{"id":"force:cmdt:create","description":"creates a new custom metadata type in the current project","usage":"<%= command.id %> -n <string> [-l <string>] [-p <string>] [-v PackageProtected|Protected|Public] [-d <directory>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-custom-metadata","pluginType":"core","aliases":[],"examples":["Create a custom metadata type with developer name 'MyCustomType'; this name will also be used as the label:"," $ sfdx force:cmdt:create --typename MyCustomType","Create a protected custom metadata type with a specific label:"," $ sfdx force:cmdt:create --typename MyCustomType --label \"Custom Type\" --plurallabel \"Custom Types\" --visibility Protected"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"typename":{"name":"typename","type":"option","char":"n","description":"unique object name for the custom metadata type","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for the custom metadata type"},"plurallabel":{"name":"plurallabel","type":"option","char":"p","description":"plural version of the label value; if blank, uses label"},"visibility":{"name":"visibility","type":"option","char":"v","description":"visibility of the custom metadata type","helpValue":"(PackageProtected|Protected|Public)","options":["PackageProtected","Protected","Public"],"default":"Public"},"outputdir":{"name":"outputdir","type":"option","char":"d","description":"directory to store the newly-created custom metadata type files"}},"args":[{"name":"file"}]},"force:cmdt:generate":{"id":"force:cmdt:generate","description":"generates a custom metadata type and all its records for the provided sObject","usage":"<%= command.id %> -n <string> -s <string> [-l <string>] [-p <string>] [-v PackageProtected|Protected|Public] [-i] [-d <directory>] [-r <directory>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-custom-metadata","pluginType":"core","aliases":[],"examples":["Generate a custom metadata type from an sObject in the default target org:"," $ sfdx force:cmdt:generate --devname MyCMDT --sobjectname MySourceObject__c","Generate a custom metadata type from an sObject in the specified target org; ignore unsupported field types instead of converting them to text:"," $ sfdx force:cmdt:generate --devname MyCMDT --sobjectname MySourceObject__c --ignoreunsupported --targetusername 'alias or user email of the org containing the source type'","Generate a protected custom metadata type from an sObject in the default target org:"," $ sfdx force:cmdt:generate --devname MyCMDT --sobjectname SourceCustomObject__c --visibility Protected","Generate a protected custom metadata type with a specific label from an sObject in the default target org:"," $ sfdx force:cmdt:generate --devname MyCMDT --label \"My CMDT\" --plurallabel \"My CMDTs\" --sobjectname SourceCustomSetting__c --visibility Protected","Generate a custom metadata type from an sObject in the default target org; put the resulting type metadata file in the specified directory:"," $ sfdx force:cmdt:generate --devname MyCMDT --sobjectname SourceCustomSetting__c --typeoutputdir 'path/to/my/cmdt/directory'","Generate a custom metadata type from an sObject in the default target org; put the resulting record metadata file(s) in the specified directory:"," $ sfdx force:cmdt:generate --devname MyCMDT --sobjectname SourceCustomSetting__c --recordsoutputdir 'path/to/my/cmdt/record/directory'"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"devname":{"name":"devname","type":"option","char":"n","description":"name of the custom metadata type","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for the custom metadata type"},"plurallabel":{"name":"plurallabel","type":"option","char":"p","description":"plural version of the label value; if blank, uses label"},"visibility":{"name":"visibility","type":"option","char":"v","description":"visibility of the custom metadata type","helpValue":"(PackageProtected|Protected|Public)","options":["PackageProtected","Protected","Public"],"default":"Public"},"sobjectname":{"name":"sobjectname","type":"option","char":"s","description":"API name of the sObject source for custom metadata generation","required":true},"ignoreunsupported":{"name":"ignoreunsupported","type":"boolean","char":"i","description":"ignore unsupported field types","allowNo":false},"typeoutputdir":{"name":"typeoutputdir","type":"option","char":"d","description":"directory to store newly-created custom metadata type files","default":"force-app/main/default/objects/"},"recordsoutputdir":{"name":"recordsoutputdir","type":"option","char":"r","description":"directory to store newly-created custom metadata record files","default":"force-app/main/default/customMetadata/"}},"args":[{"name":"file"}]},"force:cmdt:field:create":{"id":"force:cmdt:field:create","description":"generate a custom metadata field based on the field type provided","usage":"<%= command.id %> -n <string> -f Checkbox|Date|DateTime|Email|Number|Percent|Phone|Picklist|Text|TextArea|LongTextArea|Url [-p <array>] [-s <number>] [-l <string>] [-d <directory>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-custom-metadata","pluginType":"core","aliases":[],"examples":["Create a metadata file for a custom checkbox field:"," $ sfdx force:cmdt:field:create --fieldname MyField --fieldtype Checkbox","Create a metadata file for a custom picklist field:"," $ sfdx force:cmdt:field:create --fieldname MyField --fieldtype Picklist --picklistvalues \"A,B,C\"","Create a metadata file for a custom number field:"," $ sfdx force:cmdt:field:create --fieldname MyField --fieldtype Number --decimalplaces 2"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"fieldname":{"name":"fieldname","type":"option","char":"n","description":"unique name for the field","required":true},"fieldtype":{"name":"fieldtype","type":"option","char":"f","description":"type of field","required":true,"helpValue":"(Checkbox|Date|DateTime|Email|Number|Percent|Phone|Picklist|Text|TextArea|LongTextArea|Url)","options":["Checkbox","Date","DateTime","Email","Number","Percent","Phone","Picklist","Text","TextArea","LongTextArea","Url"]},"picklistvalues":{"name":"picklistvalues","type":"option","char":"p","description":"comma-separated list of picklist values; required for Picklist fields"},"decimalplaces":{"name":"decimalplaces","type":"option","char":"s","description":"number of decimal places to use for Number or Percent fields","default":0},"label":{"name":"label","type":"option","char":"l","description":"label for the field"},"outputdir":{"name":"outputdir","type":"option","char":"d","description":"directory to store newly-created field definition files"}},"args":[{"name":"file"}]},"force:cmdt:record:create":{"id":"force:cmdt:record:create","description":"create a new record for a given custom metadata type in the current project","usage":"<%= command.id %> [name=value...] -t <string> -n <string> [-l <string>] [-p <string>] [-i <directory>] [-d <directory>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-custom-metadata","pluginType":"core","aliases":[],"examples":["Create a record metadata file for custom metadata type 'MyCMT' with values specified for two custom fields:"," $ sfdx force:cmdt:record:create --typename MyCMT__mdt --recordname MyRecord My_Custom_Field_1=Foo My_Custom_Field_2=Bar","Create a protected record metadata file for custom metadata type 'MyCMT' with a specific label and values specified for two custom fields:"," $ sfdx force:cmdt:record:create --typename MyCMT__mdt --recordname MyRecord --label \"My Record\" --protected true My_Custom_Field_1=Foo My_Custom_Field_2=Bar"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"typename":{"name":"typename","type":"option","char":"t","description":"API name of the custom metadata type to create a record for","required":true},"recordname":{"name":"recordname","type":"option","char":"n","description":"name for the new record","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for the new record"},"protected":{"name":"protected","type":"option","char":"p","description":"protect the record when it is in a managed package","options":["true","false"],"default":"false"},"inputdir":{"name":"inputdir","type":"option","char":"i","description":"directory to pull the custom metadata type definition from","default":"force-app/main/default/objects"},"outputdir":{"name":"outputdir","type":"option","char":"d","description":"directory to store newly-created custom metadata record files","default":"force-app/main/default/customMetadata"}},"args":[]},"force:cmdt:record:insert":{"id":"force:cmdt:record:insert","description":"create new custom metadata type records from a CSV file","usage":"<%= command.id %> -f <string> -t <string> [-i <directory>] [-d <directory>] [-n <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/plugin-custom-metadata","pluginType":"core","aliases":[],"examples":["Create record metadata files for type 'My_CMDT_Name' (from your local project) based on values in a CSV file, using 'Name' as the column that specifies the record name:"," $ sfdx force:cmdt:record:insert --filepath path/to/my.csv --typename My_CMDT_Name","Create record metadata files for type 'My_CMDT_Name' (from the specified directory) based on values in a CSV file, using 'PrimaryKey' as the column that specifies the record name:"," $ sfdx force:cmdt:record:insert --filepath path/to/my.csv --typename My_CMDT_Name --inputdir \"path/to/my/cmdt/directory\" --namecolumn \"PrimaryKey\""],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"filepath":{"name":"filepath","type":"option","char":"f","description":"path to the CSV file","required":true},"typename":{"name":"typename","type":"option","char":"t","description":"API name of the custom metadata type","required":true},"inputdir":{"name":"inputdir","type":"option","char":"i","description":"directory to pull the custom metadata type definition from","default":"force-app/main/default/objects"},"outputdir":{"name":"outputdir","type":"option","char":"d","description":"directory to store newly-created custom metadata record files","default":"force-app/main/default/customMetadata"},"namecolumn":{"name":"namecolumn","type":"option","char":"n","description":"column that is used to determine the name of the record","default":"Name"}},"args":[]}}}
|
package/package.json
CHANGED
|
@@ -1,128 +1,143 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
"name": "@salesforce/plugin-custom-metadata",
|
|
3
|
+
"description": "Tools for working with custom metadata types and their records.",
|
|
4
|
+
"version": "1.0.12",
|
|
5
|
+
"contributors": [
|
|
6
|
+
{
|
|
7
|
+
"name": "Carolyn Grabill",
|
|
8
|
+
"url": "https://www.salesforce.com/"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"name": "Bryan Friend",
|
|
12
|
+
"url": "https://www.codescience.com/"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "Abhishek Tangudu",
|
|
16
|
+
"url": "https://www.codescience.com/"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "Matt Turnure",
|
|
20
|
+
"url": "https://www.codescience.com/"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "Mohith Shrivastava",
|
|
24
|
+
"url": "https://www.codescience.com/"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "Brian Runyan",
|
|
28
|
+
"url": "https://www.codescience.com/"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Brian Buffington",
|
|
32
|
+
"url": "https://www.codescience.com/"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "Catherine Schell",
|
|
36
|
+
"url": "https://www.salesforce.com/"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "Seth Leger",
|
|
40
|
+
"url": "https://www.salesforce.com/"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"bugs": "https://github.com/salesforcecli/plugin-custom-metadata/issues",
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@oclif/command": "^1.6.1",
|
|
46
|
+
"@oclif/config": "^1.15.1",
|
|
47
|
+
"@oclif/errors": "^1.2.2",
|
|
48
|
+
"@salesforce/command": "^3.0.0",
|
|
49
|
+
"@salesforce/ts-types": "^1.2.2",
|
|
50
|
+
"tslib": "^2.0.0"
|
|
13
51
|
},
|
|
14
|
-
{
|
|
15
|
-
|
|
16
|
-
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@oclif/dev-cli": "^1.22.2",
|
|
54
|
+
"@oclif/plugin-command-snapshot": "^1.0.0",
|
|
55
|
+
"@oclif/plugin-help": "^3.0.1",
|
|
56
|
+
"@oclif/test": "^1.2.6",
|
|
57
|
+
"@salesforce/dev-config": "^1.5.0",
|
|
58
|
+
"@salesforce/dev-scripts": "0.6.1",
|
|
59
|
+
"@salesforce/plugin-command-reference": "^1.1.0",
|
|
60
|
+
"@salesforce/ts-sinon": "^1.1.2",
|
|
61
|
+
"@semantic-release/git": "^9.0.0",
|
|
62
|
+
"@types/chai": "^4.2.11",
|
|
63
|
+
"@types/jsforce": "1.9.18",
|
|
64
|
+
"@types/mocha": "^7.0.2",
|
|
65
|
+
"@types/node": "^14.0.9",
|
|
66
|
+
"@types/xml2js": "^0.4.5",
|
|
67
|
+
"chai": "^4.2.0",
|
|
68
|
+
"globby": "^11.0.1",
|
|
69
|
+
"husky": "^4.2.5",
|
|
70
|
+
"mocha": "^7.2.0",
|
|
71
|
+
"nyc": "^15.1.0",
|
|
72
|
+
"semantic-release": "^17.0.8",
|
|
73
|
+
"shx": "0.2.2",
|
|
74
|
+
"sinon": "9.0.2",
|
|
75
|
+
"ts-node": "^8.10.2",
|
|
76
|
+
"typescript": "^3.9.3",
|
|
77
|
+
"xml2js": "^0.4.23"
|
|
17
78
|
},
|
|
18
|
-
{
|
|
19
|
-
|
|
20
|
-
"url": "https://www.codescience.com/"
|
|
79
|
+
"engines": {
|
|
80
|
+
"node": ">=8.0.0"
|
|
21
81
|
},
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
82
|
+
"files": [
|
|
83
|
+
"/csvtojson",
|
|
84
|
+
"/lib",
|
|
85
|
+
"/messages",
|
|
86
|
+
"/oclif.manifest.json"
|
|
87
|
+
],
|
|
88
|
+
"homepage": "https://github.com/salesforcecli/plugin-custom-metadata",
|
|
89
|
+
"keywords": [
|
|
90
|
+
"sfdx-plugin"
|
|
91
|
+
],
|
|
92
|
+
"license": "BSD-3-Clause",
|
|
93
|
+
"oclif": {
|
|
94
|
+
"commands": "./lib/commands",
|
|
95
|
+
"bin": "sfdx",
|
|
96
|
+
"devPlugins": [
|
|
97
|
+
"@oclif/plugin-help",
|
|
98
|
+
"@oclif/plugin-command-snapshot",
|
|
99
|
+
"@salesforce/plugin-command-reference"
|
|
100
|
+
],
|
|
101
|
+
"topics": {
|
|
102
|
+
"force": {
|
|
103
|
+
"external": true,
|
|
104
|
+
"subtopics": {
|
|
105
|
+
"cmdt": {
|
|
106
|
+
"description": "create and update custom metadata types and their records",
|
|
107
|
+
"subtopics": {
|
|
108
|
+
"record": {
|
|
109
|
+
"description": "create and update custom metadata type records"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
25
116
|
},
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
117
|
+
"repository": "github:salesforcecli/plugin-custom-metadata",
|
|
118
|
+
"scripts": {
|
|
119
|
+
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
|
|
120
|
+
"compile": "tsc -b",
|
|
121
|
+
"build": "yarn run clean:lib && yarn compile",
|
|
122
|
+
"postpack": "rm -f oclif.manifest.json",
|
|
123
|
+
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish && yarn test:deprecation-policy && yarn test:command-reference",
|
|
124
|
+
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
|
|
125
|
+
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
|
|
126
|
+
"version": "oclif-dev readme && git add README.md",
|
|
127
|
+
"release": "semantic-release -p @semantic-release/git -p @semantic-release/npm -p @semantic-release/github -p @semantic-release/commit-analyzer",
|
|
128
|
+
"test:deprecation-policy": "./bin/run snapshot:compare",
|
|
129
|
+
"test:command-reference": "./bin/run commandreference:generate -p @salesforce/plugin-custom-metadata --erroronwarnings"
|
|
29
130
|
},
|
|
30
|
-
{
|
|
31
|
-
|
|
32
|
-
|
|
131
|
+
"husky": {
|
|
132
|
+
"hooks": {
|
|
133
|
+
"commit-msg": "yarn sf-husky-commit-msg"
|
|
134
|
+
}
|
|
33
135
|
},
|
|
34
|
-
{
|
|
35
|
-
|
|
36
|
-
"url": "https://www.salesforce.com/"
|
|
136
|
+
"publishConfig": {
|
|
137
|
+
"access": "public"
|
|
37
138
|
},
|
|
38
|
-
{
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
],
|
|
43
|
-
"bugs": "https://github.com/salesforcecli/plugin-custom-metadata/issues",
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"@oclif/command": "^1.6.1",
|
|
46
|
-
"@oclif/config": "^1.15.1",
|
|
47
|
-
"@oclif/errors": "^1.2.2",
|
|
48
|
-
"@salesforce/command": "^3.0.0",
|
|
49
|
-
"@salesforce/ts-types": "^1.2.2",
|
|
50
|
-
"tslib": "^2.0.0"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@oclif/dev-cli": "^1.22.2",
|
|
54
|
-
"@oclif/plugin-command-snapshot": "^1.0.0",
|
|
55
|
-
"@oclif/plugin-help": "^3.0.1",
|
|
56
|
-
"@oclif/test": "^1.2.6",
|
|
57
|
-
"@salesforce/dev-config": "^1.5.0",
|
|
58
|
-
"@salesforce/plugin-command-reference": "^1.1.0",
|
|
59
|
-
"@salesforce/ts-sinon": "^1.1.2",
|
|
60
|
-
"@semantic-release/git": "^9.0.0",
|
|
61
|
-
"@types/chai": "^4.2.11",
|
|
62
|
-
"@types/jsforce": "1.9.18",
|
|
63
|
-
"@types/mocha": "^7.0.2",
|
|
64
|
-
"@types/node": "^14.0.9",
|
|
65
|
-
"@types/xml2js": "^0.4.5",
|
|
66
|
-
"chai": "^4.2.0",
|
|
67
|
-
"globby": "^11.0.1",
|
|
68
|
-
"mocha": "^7.2.0",
|
|
69
|
-
"nyc": "^15.1.0",
|
|
70
|
-
"semantic-release": "^17.0.8",
|
|
71
|
-
"sinon": "9.0.2",
|
|
72
|
-
"ts-node": "^8.10.2",
|
|
73
|
-
"typescript": "^3.9.3",
|
|
74
|
-
"xml2js": "^0.4.23"
|
|
75
|
-
},
|
|
76
|
-
"engines": {
|
|
77
|
-
"node": ">=8.0.0"
|
|
78
|
-
},
|
|
79
|
-
"files": [
|
|
80
|
-
"/csvtojson",
|
|
81
|
-
"/lib",
|
|
82
|
-
"/messages",
|
|
83
|
-
"/oclif.manifest.json"
|
|
84
|
-
],
|
|
85
|
-
"homepage": "https://github.com/salesforcecli/plugin-custom-metadata",
|
|
86
|
-
"keywords": [
|
|
87
|
-
"sfdx-plugin"
|
|
88
|
-
],
|
|
89
|
-
"license": "BSD-3-Clause",
|
|
90
|
-
"oclif": {
|
|
91
|
-
"commands": "./lib/commands",
|
|
92
|
-
"bin": "sfdx",
|
|
93
|
-
"devPlugins": [
|
|
94
|
-
"@oclif/plugin-help",
|
|
95
|
-
"@oclif/plugin-command-snapshot",
|
|
96
|
-
"@salesforce/plugin-command-reference"
|
|
97
|
-
],
|
|
98
|
-
"topics": {
|
|
99
|
-
"force": {
|
|
100
|
-
"external": true,
|
|
101
|
-
"subtopics": {
|
|
102
|
-
"cmdt": {
|
|
103
|
-
"description": "create and update custom metadata types and their records",
|
|
104
|
-
"subtopics": {
|
|
105
|
-
"record": {
|
|
106
|
-
"description": "create and update custom metadata type records"
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}
|
|
139
|
+
"sfdx": {
|
|
140
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/sfdx-cli-03032020.crt",
|
|
141
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/signatures/salesforce-plugin-custom-metadata-1.0.12.sig"
|
|
112
142
|
}
|
|
113
|
-
|
|
114
|
-
"repository": "github:salesforcecli/plugin-custom-metadata",
|
|
115
|
-
"scripts": {
|
|
116
|
-
"postpack": "rm -f oclif.manifest.json",
|
|
117
|
-
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish && yarn test:deprecation-policy && yarn test:command-reference",
|
|
118
|
-
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
|
|
119
|
-
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
|
|
120
|
-
"version": "oclif-dev readme && git add README.md",
|
|
121
|
-
"release": "semantic-release -p @semantic-release/git -p @semantic-release/npm -p @semantic-release/github -p @semantic-release/commit-analyzer",
|
|
122
|
-
"test:deprecation-policy": "./bin/run snapshot:compare",
|
|
123
|
-
"test:command-reference": "./bin/run commandreference:generate -p @salesforce/plugin-custom-metadata --erroronwarnings"
|
|
124
|
-
},
|
|
125
|
-
"publishConfig": {
|
|
126
|
-
"access": "public"
|
|
127
|
-
}
|
|
128
|
-
}
|
|
143
|
+
}
|