@cparra/apexdocs 3.17.1-beta.5 → 3.19.0-beta.0
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/dist/cli/generate.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -5622,9 +5622,8 @@ function generateChangeLog(oldBundles, newBundles, config, debugLogger) {
|
|
|
5622
5622
|
parsedFiles: [...apex.parsedFiles, ...parsedObjectFiles],
|
|
5623
5623
|
errors: apex.errors
|
|
5624
5624
|
})),
|
|
5625
|
-
// We swallow failures here and keep going, because
|
|
5626
|
-
//
|
|
5627
|
-
// this step produced no additional parsed files.
|
|
5625
|
+
// We swallow failures here and keep going, because this helper's left type is `never`.
|
|
5626
|
+
// Any such failures are treated as if this step produced no additional parsed files.
|
|
5628
5627
|
TE__namespace.orElseW(() => TE__namespace.right({ parsedFiles: apex.parsedFiles, errors: apex.errors }))
|
|
5629
5628
|
)
|
|
5630
5629
|
),
|
|
@@ -5636,9 +5635,8 @@ function generateChangeLog(oldBundles, newBundles, config, debugLogger) {
|
|
|
5636
5635
|
parsedFiles: [...objects.parsedFiles, ...parsedTriggerFiles],
|
|
5637
5636
|
errors: objects.errors
|
|
5638
5637
|
})),
|
|
5639
|
-
// We swallow failures here and keep going, because
|
|
5640
|
-
//
|
|
5641
|
-
// no triggers were parsed.
|
|
5638
|
+
// We swallow failures here and keep going, because this helper's left type is `never`.
|
|
5639
|
+
// Any such failures are treated as if no triggers were parsed.
|
|
5642
5640
|
TE__namespace.orElseW(() => TE__namespace.right({ parsedFiles: objects.parsedFiles, errors: objects.errors }))
|
|
5643
5641
|
)
|
|
5644
5642
|
),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cparra/apexdocs",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.19.0-beta.0",
|
|
4
4
|
"description": "Library with CLI capabilities to generate documentation for Salesforce Apex classes.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18"
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
]
|
|
97
97
|
},
|
|
98
98
|
"dependencies": {
|
|
99
|
-
"@cparra/apex-reflection": "2.
|
|
99
|
+
"@cparra/apex-reflection": "2.23.1",
|
|
100
100
|
"@salesforce/source-deploy-retrieve": "^12.20.1",
|
|
101
101
|
"@types/js-yaml": "^4.0.9",
|
|
102
102
|
"@types/yargs": "^17.0.32",
|