@salesforce/plugin-custom-metadata 3.1.12 → 3.1.14
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 +5 -5
- package/npm-shrinkwrap.json +16556 -0
- package/oclif.lock +775 -457
- package/oclif.manifest.json +1 -1
- package/package.json +12 -13
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-custom-metadata",
|
|
3
3
|
"description": "Tools for working with custom metadata types and their records.",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.14",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Carolyn Grabill",
|
|
@@ -44,19 +44,18 @@
|
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@oclif/core": "^3.19.2",
|
|
46
46
|
"@salesforce/core": "^6.5.1",
|
|
47
|
-
"@salesforce/sf-plugins-core": "^7.1.
|
|
47
|
+
"@salesforce/sf-plugins-core": "^7.1.14",
|
|
48
48
|
"csv-parse": "^5.5.3",
|
|
49
49
|
"fast-xml-parser": "^4.3.4"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@oclif/plugin-command-snapshot": "^5.0.
|
|
52
|
+
"@oclif/plugin-command-snapshot": "^5.0.9",
|
|
53
53
|
"@salesforce/cli-plugins-testkit": "^5.1.9",
|
|
54
|
-
"@salesforce/dev-scripts": "^8.
|
|
55
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
54
|
+
"@salesforce/dev-scripts": "^8.4.1",
|
|
55
|
+
"@salesforce/plugin-command-reference": "^3.0.69",
|
|
56
56
|
"eslint-plugin-sf-plugin": "^1.17.3",
|
|
57
57
|
"jsforce": "^2.0.0-beta.29",
|
|
58
|
-
"oclif": "^4.4.
|
|
59
|
-
"shx": "0.2.2",
|
|
58
|
+
"oclif": "^4.4.17",
|
|
60
59
|
"ts-node": "^10.9.2",
|
|
61
60
|
"typescript": "^5.3.3"
|
|
62
61
|
},
|
|
@@ -66,9 +65,10 @@
|
|
|
66
65
|
"files": [
|
|
67
66
|
"/lib",
|
|
68
67
|
"/messages",
|
|
68
|
+
"/npm-shrinkwrap.json",
|
|
69
|
+
"/oclif.lock",
|
|
69
70
|
"/oclif.manifest.json",
|
|
70
|
-
"/schemas"
|
|
71
|
-
"/oclif.lock"
|
|
71
|
+
"/schemas"
|
|
72
72
|
],
|
|
73
73
|
"homepage": "https://github.com/salesforcecli/plugin-custom-metadata",
|
|
74
74
|
"keywords": [
|
|
@@ -106,13 +106,12 @@
|
|
|
106
106
|
"build": "wireit",
|
|
107
107
|
"clean": "sf-clean",
|
|
108
108
|
"clean-all": "sf-clean all",
|
|
109
|
-
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json oclif.lock",
|
|
110
109
|
"compile": "wireit",
|
|
111
110
|
"docs": "sf-docs",
|
|
112
111
|
"format": "wireit",
|
|
113
112
|
"link-check": "wireit",
|
|
114
113
|
"lint": "wireit",
|
|
115
|
-
"postpack": "
|
|
114
|
+
"postpack": "sf-clean --ignore-signing-artifacts",
|
|
116
115
|
"prepack": "sf-prepack",
|
|
117
116
|
"prepare": "sf-install",
|
|
118
117
|
"test": "wireit",
|
|
@@ -243,7 +242,7 @@
|
|
|
243
242
|
"type": "module",
|
|
244
243
|
"author": "Salesforce",
|
|
245
244
|
"sfdx": {
|
|
246
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.1.
|
|
247
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.1.
|
|
245
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.1.14.crt",
|
|
246
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.1.14.sig"
|
|
248
247
|
}
|
|
249
248
|
}
|