@marsson/ciutils 0.0.14 โ 0.2.1
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/README.md +86 -171
- package/lib/commands/create/file.js +1 -1
- package/lib/commands/create/file.js.map +1 -1
- package/lib/commands/reporton/deployment.js +1 -0
- package/lib/commands/reporton/deployment.js.map +1 -1
- package/lib/commands/validate/repository/metadata.js +372 -0
- package/lib/commands/validate/repository/metadata.js.map +1 -0
- package/messages/validate.repository.metadata.md +24 -0
- package/oclif.lock +3657 -2172
- package/oclif.manifest.json +90 -2
- package/package.json +21 -11
- package/lib/commands/create/file.d.ts +0 -16
- package/lib/commands/remove/assignments.d.ts +0 -20
- package/lib/commands/reporton/deployment.d.ts +0 -27
- package/lib/index.d.ts +0 -2
- package/lib/utils/Utils.d.ts +0 -61
- package/lib/utils/fileToContentVersion.d.ts +0 -10
package/README.md
CHANGED
@@ -1,227 +1,142 @@
|
|
1
|
-
#
|
1
|
+
# SF-CIUtils: Salesforce CI/CD Utilities ๐
|
2
2
|
|
3
|
-
[](https://www.npmjs.com/package/@marsson/ciutils)
|
4
|
+
[](https://npmjs.org/package/@marsson/ciutils)
|
5
|
+
[](https://raw.githubusercontent.com/salesforcecli/ciutils/main/LICENSE.txt)
|
6
|
+
[](https://codecov.io/gh/marsson/sf-ciutils)
|
4
7
|
|
5
|
-
##
|
8
|
+
## ๐ What is SF-CIUtils?
|
6
9
|
|
7
|
-
|
10
|
+
SF-CIUtils is a powerful toolkit for Salesforce developers who want to supercharge their CI/CD workflows! This plugin for the Salesforce CLI provides essential utilities that make continuous integration and deployment with Salesforce a breeze.
|
8
11
|
|
9
|
-
|
10
|
-
2. Generate your plugin:
|
12
|
+
Think of it as your Swiss Army knife for Salesforce CI/CD operations - whether you're validating repository metadata, monitoring deployments, managing file uploads, or handling user permissions, SF-CIUtils has got you covered!
|
11
13
|
|
12
|
-
|
13
|
-
sf plugins install dev
|
14
|
-
sf dev generate plugin
|
15
|
-
|
16
|
-
git init -b main
|
17
|
-
git add . && git commit -m "chore: initial commit"
|
18
|
-
```
|
19
|
-
|
20
|
-
3. Create your plugin's repo in the salesforcecli github org
|
21
|
-
4. When you're ready, replace the contents of this README with the information you want.
|
22
|
-
|
23
|
-
## Learn about `sf` plugins
|
24
|
-
|
25
|
-
Salesforce CLI plugins are based on the [oclif plugin framework](<(https://oclif.io/docs/introduction.html)>). Read the [plugin developer guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_plugins.meta/sfdx_cli_plugins/cli_plugins_architecture_sf_cli.htm) to learn about Salesforce CLI plugin development.
|
26
|
-
|
27
|
-
This repository contains a lot of additional scripts and tools to help with general Salesforce node development and enforce coding standards. You should familiarize yourself with some of the [node developer packages](#tooling) used by Salesforce.
|
28
|
-
|
29
|
-
Additionally, there are some additional tests that the Salesforce CLI will enforce if this plugin is ever bundled with the CLI. These test are included by default under the `posttest` script and it is required to keep these tests active in your plugin if you plan to have it bundled.
|
30
|
-
|
31
|
-
### Tooling
|
32
|
-
|
33
|
-
- [@salesforce/core](https://github.com/forcedotcom/sfdx-core)
|
34
|
-
- [@salesforce/kit](https://github.com/forcedotcom/kit)
|
35
|
-
- [@salesforce/sf-plugins-core](https://github.com/salesforcecli/sf-plugins-core)
|
36
|
-
- [@salesforce/ts-types](https://github.com/forcedotcom/ts-types)
|
37
|
-
- [@salesforce/ts-sinon](https://github.com/forcedotcom/ts-sinon)
|
38
|
-
- [@salesforce/dev-config](https://github.com/forcedotcom/dev-config)
|
39
|
-
- [@salesforce/dev-scripts](https://github.com/forcedotcom/dev-scripts)
|
40
|
-
|
41
|
-
### Hooks
|
42
|
-
|
43
|
-
For cross clouds commands, e.g. `sf env list`, we utilize [oclif hooks](https://oclif.io/docs/hooks) to get the relevant information from installed plugins.
|
14
|
+
## โจ Features
|
44
15
|
|
45
|
-
|
16
|
+
- **Validate Repository Metadata**: Compare your local metadata with what's in your org to catch metadata drift
|
17
|
+
- **Report on Deployments**: Get detailed, real-time information about your deployments
|
18
|
+
- **Create Files**: Upload files to Salesforce with ease
|
19
|
+
- **Remove Assignments**: Efficiently manage permission sets, permission set groups, and group assignments
|
46
20
|
|
47
|
-
|
48
|
-
|
49
|
-
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).
|
50
|
-
|
51
|
-
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.
|
52
|
-
|
53
|
-
## Install
|
21
|
+
## ๐ Installation
|
54
22
|
|
55
23
|
```bash
|
56
|
-
sf plugins install ciutils
|
24
|
+
sf plugins install @marsson/ciutils
|
57
25
|
```
|
58
26
|
|
59
|
-
|
60
|
-
|
61
|
-
Please report any issues at https://github.com/forcedotcom/cli/issues
|
62
|
-
|
63
|
-
## Contributing
|
64
|
-
|
65
|
-
1. Please read our [Code of Conduct](CODE_OF_CONDUCT.md)
|
66
|
-
2. Create a new issue before starting your project so that we can keep track of
|
67
|
-
what you are trying to add/fix. That way, we can also offer suggestions or
|
68
|
-
let you know if there is already an effort in progress.
|
69
|
-
3. Fork this repository.
|
70
|
-
4. [Build the plugin locally](#build)
|
71
|
-
5. Create a _topic_ branch in your fork. Note, this step is recommended but technically not required if contributing using a fork.
|
72
|
-
6. Edit the code in your fork.
|
73
|
-
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.
|
74
|
-
8. Sign CLA (see [CLA](#cla) below).
|
75
|
-
9. Send us a pull request when you are done. We'll review your code, suggest any needed changes, and merge it in.
|
27
|
+
Or install a specific version:
|
76
28
|
|
77
|
-
|
29
|
+
```bash
|
30
|
+
sf plugins install @marsson/ciutils@x.y.z
|
31
|
+
```
|
78
32
|
|
79
|
-
|
80
|
-
Agreement. You can do so by going to https://cla.salesforce.com/sign-cla.
|
33
|
+
## ๐ง Commands
|
81
34
|
|
82
|
-
###
|
35
|
+
### `sf validate repository metadata`
|
83
36
|
|
84
|
-
|
37
|
+
This command helps you validate your local metadata against what's in your Salesforce org. It's like having a detective that spots differences between your local files and what's actually deployed!
|
85
38
|
|
86
39
|
```bash
|
87
|
-
|
88
|
-
git clone git@github.com:salesforcecli/ciutils
|
89
|
-
|
90
|
-
# Install the dependencies and compile
|
91
|
-
yarn && yarn build
|
40
|
+
sf validate repository metadata --folder path/to/metadata --target-org your-org
|
92
41
|
```
|
93
42
|
|
94
|
-
|
43
|
+
**Example**: Check if your local Apex classes match what's in your production org:
|
95
44
|
|
96
45
|
```bash
|
97
|
-
|
98
|
-
./bin/dev hello world
|
46
|
+
sf validate repository metadata --folder force-app/main/default/classes --target-org production
|
99
47
|
```
|
100
48
|
|
101
|
-
|
49
|
+
### `sf reporton deployment`
|
50
|
+
|
51
|
+
Keep an eye on your deployments with this command. It's like having a deployment dashboard right in your terminal!
|
102
52
|
|
103
53
|
```bash
|
104
|
-
|
105
|
-
sf plugins link .
|
106
|
-
# To verify
|
107
|
-
sf plugins
|
54
|
+
sf reporton deployment --deploymentid 0AfXXXXXXXXXXXXXXX --target-org your-org
|
108
55
|
```
|
109
56
|
|
110
|
-
|
111
|
-
|
112
|
-
<!-- commands -->
|
113
|
-
* [`sf create file`](#sf-create-file)
|
114
|
-
* [`sf remove assignments`](#sf-remove-assignments)
|
115
|
-
* [`sf reporton deployment`](#sf-reporton-deployment)
|
116
|
-
|
117
|
-
## `sf create file`
|
118
|
-
|
119
|
-
Upload a local file to an org.
|
57
|
+
**Example**: Monitor a deployment and wait for it to complete:
|
120
58
|
|
59
|
+
```bash
|
60
|
+
sf reporton deployment --deploymentid 0AfXXXXXXXXXXXXXXX --target-org production --awaitcompletion
|
121
61
|
```
|
122
|
-
USAGE
|
123
|
-
$ sf create file -o <value> -f <value> [--json] [--flags-dir <value>] [--api-version <value>] [-t <value>] [-i
|
124
|
-
<value>] [-c <value>]
|
125
|
-
|
126
|
-
FLAGS
|
127
|
-
-c, --created-date=<value> ID of the record to attach the file to.
|
128
|
-
-f, --file=<value> (required) Path of file to upload.
|
129
|
-
-i, --parent-id=<value> ID of the record to attach the file to.
|
130
|
-
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
131
|
-
configuration variable is already set.
|
132
|
-
-t, --title=<value> New title given to the file (ContentDocument) after it's uploaded.
|
133
|
-
--api-version=<value> Override the api version used for api requests made by this command
|
134
|
-
|
135
|
-
GLOBAL FLAGS
|
136
|
-
--flags-dir=<value> Import flag values from a directory.
|
137
|
-
--json Format output as json.
|
138
|
-
|
139
|
-
DESCRIPTION
|
140
|
-
Upload a local file to an org.
|
141
62
|
|
142
|
-
|
143
|
-
command displays the ID of the new ContentDocument record which represents the uploaded file.
|
63
|
+
### `sf create file`
|
144
64
|
|
145
|
-
|
146
|
-
can optionally attach the file to an existing record, such as an account, as long as you know its record ID.
|
65
|
+
Upload files to your Salesforce org with this handy command. Perfect for adding documents, images, or any other files to your org!
|
147
66
|
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
EXAMPLES
|
152
|
-
Upload the local file "resources/astro.png" to your default org:
|
67
|
+
```bash
|
68
|
+
sf create file --file path/to/file --target-org your-org
|
69
|
+
```
|
153
70
|
|
154
|
-
|
71
|
+
**Example**: Upload an image and attach it to a record:
|
155
72
|
|
156
|
-
|
73
|
+
```bash
|
74
|
+
sf create file --file assets/logo.png --title "Company Logo" --parent-id 001XXXXXXXXXXXXXXX --target-org production
|
75
|
+
```
|
157
76
|
|
158
|
-
|
77
|
+
### `sf remove assignments`
|
159
78
|
|
160
|
-
|
79
|
+
Efficiently manage user permissions by removing assignments from users. Great for cleaning up access during user offboarding!
|
161
80
|
|
162
|
-
|
81
|
+
```bash
|
82
|
+
sf remove assignments --object PermissionSet --usernames user@example.com --target-org your-org
|
163
83
|
```
|
164
84
|
|
165
|
-
|
166
|
-
|
167
|
-
Summary of a command.
|
85
|
+
**Example**: Remove multiple permission sets from multiple users:
|
168
86
|
|
87
|
+
```bash
|
88
|
+
sf remove assignments --object PermissionSet --usernames user1@example.com user2@example.com --target-org production
|
169
89
|
```
|
170
|
-
USAGE
|
171
|
-
$ sf remove assignments -b PermissionSet|PermissionSetGroup|Group... -u <value>... -o <value> [--json] [--flags-dir
|
172
|
-
<value>] [-n <value>]
|
173
90
|
|
174
|
-
|
175
|
-
-b, --object=<option>... (required) The object for which the assignment will be removed.
|
176
|
-
<options: PermissionSet|PermissionSetGroup|Group>
|
177
|
-
-n, --name=<value> Description of a flag.
|
178
|
-
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
179
|
-
configuration variable is already set.
|
180
|
-
-u, --usernames=<value>... (required) The list of usernames to be unassigned from the selected object. If in a
|
181
|
-
sandbox, the script will look for "usename" and "username".sandbox for unassignment.
|
91
|
+
## ๐งช Development
|
182
92
|
|
183
|
-
|
184
|
-
--flags-dir=<value> Import flag values from a directory.
|
185
|
-
--json Format output as json.
|
93
|
+
To contribute to SF-CIUtils, follow these steps:
|
186
94
|
|
187
|
-
|
188
|
-
|
95
|
+
1. Clone the repository:
|
96
|
+
```bash
|
97
|
+
git clone https://github.com/marsson/sf-ciutils.git
|
98
|
+
```
|
189
99
|
|
190
|
-
|
100
|
+
2. Install dependencies:
|
101
|
+
```bash
|
102
|
+
yarn install
|
103
|
+
```
|
191
104
|
|
192
|
-
|
193
|
-
|
105
|
+
3. Build the plugin:
|
106
|
+
```bash
|
107
|
+
yarn build
|
108
|
+
```
|
194
109
|
|
195
|
-
|
196
|
-
|
110
|
+
4. Link to your local Salesforce CLI:
|
111
|
+
```bash
|
112
|
+
sf plugins link .
|
113
|
+
```
|
197
114
|
|
198
|
-
|
199
|
-
```
|
115
|
+
5. Run tests:
|
116
|
+
```bash
|
117
|
+
yarn test
|
118
|
+
```
|
200
119
|
|
201
|
-
##
|
120
|
+
## ๐ค Contributing
|
202
121
|
|
203
|
-
|
122
|
+
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
|
204
123
|
|
205
|
-
|
206
|
-
|
207
|
-
|
124
|
+
1. Fork the Project
|
125
|
+
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
|
126
|
+
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
|
127
|
+
4. Push to the Branch (`git push origin feature/AmazingFeature`)
|
128
|
+
5. Open a Pull Request
|
208
129
|
|
209
|
-
|
210
|
-
-a, --awaitcompletion If the aplication should respond every 30 sec until the deployment is complete.
|
211
|
-
-d, --deploymentid=<value> (required) The id of the deployment that we want to report on.
|
212
|
-
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
213
|
-
configuration variable is already set.
|
130
|
+
## ๐ License
|
214
131
|
|
215
|
-
|
216
|
-
--flags-dir=<value> Import flag values from a directory.
|
217
|
-
--json Format output as json.
|
132
|
+
This project is licensed under the BSD 3-Clause License - see the LICENSE file for details.
|
218
133
|
|
219
|
-
|
220
|
-
Summary of a command.
|
134
|
+
## ๐ Acknowledgments
|
221
135
|
|
222
|
-
|
136
|
+
- Thanks to the Salesforce CLI team for their amazing work
|
137
|
+
- Shoutout to all the contributors who have helped make this project better
|
138
|
+
- Special thanks to the Salesforce developer community for their continuous support
|
223
139
|
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
<!-- commandsstop -->
|
140
|
+
---
|
141
|
+
|
142
|
+
Happy coding! May your deployments be swift and your validations pass on the first try! ๐
|
@@ -37,7 +37,7 @@ export default class DataCreateFile extends SfCommand {
|
|
37
37
|
// Hacking in CreatedDate
|
38
38
|
// Will be optional and will only work if the option in the org to change audit fields is available.
|
39
39
|
'created-date': Flags.string({
|
40
|
-
summary: messages.getMessage('flags.
|
40
|
+
summary: messages.getMessage('flags.created-date.summary'),
|
41
41
|
char: 'c',
|
42
42
|
parse: (input) => {
|
43
43
|
// Validate the input to be in ISO 8601 format
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"file.js","sourceRoot":"","sources":["../../../src/commands/create/file.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,6BAA6B,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,EAAkB,OAAO,EAAE,MAAM,qCAAqC,CAAC;AAE9E,QAAQ,CAAC,kCAAkC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC7D,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,kBAAkB,EAAE,kBAAkB,CAAC,CAAC;AAQ/E,MAAM,CAAC,OAAO,OAAO,cAAe,SAAQ,SAAyB;IAC5D,MAAM,CAAU,OAAO,GAAG,QAAQ,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;IACzD,MAAM,CAAU,WAAW,GAAG,QAAQ,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;IACjE,MAAM,CAAU,QAAQ,GAAG,QAAQ,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAE5D,MAAM,CAAU,KAAK,GAAG;QAC7B,YAAY,EAAE,KAAK,CAAC,WAAW,EAAE;QACjC,aAAa,EAAE,KAAK,CAAC,aAAa,EAAE;QACpC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC;YAClB,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,qBAAqB,CAAC;YACnD,IAAI,EAAE,GAAG;YACT,QAAQ,EAAE,KAAK;SAChB,CAAC;QACF,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;YACf,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,oBAAoB,CAAC;YAClD,IAAI,EAAE,GAAG;YACT,QAAQ,EAAE,IAAI;YACd,MAAM,EAAE,IAAI;SACb,CAAC;QACF,uCAAuC;QACvC,yDAAyD;QACzD,WAAW,EAAE,KAAK,CAAC,YAAY,CAAC;YAC9B,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,yBAAyB,CAAC;YACvD,IAAI,EAAE,GAAG;YACT,MAAM,EAAE,MAAM;SACf,CAAC;QACF,yBAAyB;QACzB,oGAAoG;QACpG,cAAc,EAAE,KAAK,CAAC,MAAM,CAAC;YAC3B,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,
|
1
|
+
{"version":3,"file":"file.js","sourceRoot":"","sources":["../../../src/commands/create/file.ts"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../../../src/commands/reporton/deployment.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../../../src/commands/reporton/deployment.ts"],"names":[],"mappings":"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"}
|