@peernova/cuneiform-sf 1.0.1-beta.2 → 1.0.2
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 +20 -2
- package/oclif.manifest.json +1 -1
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -50,6 +50,24 @@ This plugin is bundled with the [Salesforce CLI](https://developer.salesforce.co
|
|
|
50
50
|
|
|
51
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
52
|
|
|
53
|
+
## Prerequisites
|
|
54
|
+
|
|
55
|
+
### SFDMU (SFDX Data Move Utility)
|
|
56
|
+
|
|
57
|
+
This plugin requires the SFDMU plugin for data export/import operations. Install it before using the Cuneiform data migration commands:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
sf plugins install sfdmu
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Verify the installation:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
sf sfdmu --help
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
For more information about SFDMU, visit: https://help.sfdmu.com
|
|
70
|
+
|
|
53
71
|
## Install
|
|
54
72
|
|
|
55
73
|
```bash
|
|
@@ -143,7 +161,7 @@ FLAG DESCRIPTIONS
|
|
|
143
161
|
More information about a flag. Don't repeat the summary.
|
|
144
162
|
```
|
|
145
163
|
|
|
146
|
-
_See code: [src/commands/cuneiform/about.ts](https://github.com/PeerNova-Solutions/cuneiform-cli/blob/1.0.
|
|
164
|
+
_See code: [src/commands/cuneiform/about.ts](https://github.com/PeerNova-Solutions/cuneiform-cli/blob/1.0.2/src/commands/cuneiform/about.ts)_
|
|
147
165
|
|
|
148
166
|
## `sf hello world`
|
|
149
167
|
|
|
@@ -180,6 +198,6 @@ FLAG DESCRIPTIONS
|
|
|
180
198
|
This person can be anyone in the world!
|
|
181
199
|
```
|
|
182
200
|
|
|
183
|
-
_See code: [src/commands/hello/world.ts](https://github.com/PeerNova-Solutions/cuneiform-cli/blob/1.0.
|
|
201
|
+
_See code: [src/commands/hello/world.ts](https://github.com/PeerNova-Solutions/cuneiform-cli/blob/1.0.2/src/commands/hello/world.ts)_
|
|
184
202
|
|
|
185
203
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@peernova/cuneiform-sf",
|
|
3
3
|
"description": "Cuneiform for Salesforce CLI-Powered Data Profiling",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@oclif/core": "^4",
|
|
7
7
|
"@salesforce/core": "^8",
|
|
@@ -35,6 +35,14 @@
|
|
|
35
35
|
"cuneiform"
|
|
36
36
|
],
|
|
37
37
|
"license": "BSD-3-Clause",
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"sfdmu": ">=4.0.0"
|
|
40
|
+
},
|
|
41
|
+
"peerDependenciesMeta": {
|
|
42
|
+
"sfdmu": {
|
|
43
|
+
"optional": false
|
|
44
|
+
}
|
|
45
|
+
},
|
|
38
46
|
"oclif": {
|
|
39
47
|
"commands": "./lib/commands",
|
|
40
48
|
"bin": "sf",
|