@salesforce/packaging 1.1.1 → 1.1.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/lib/package/package.js +4 -1
- package/package.json +3 -3
package/lib/package/package.js
CHANGED
|
@@ -94,7 +94,10 @@ class Package {
|
|
|
94
94
|
* @param connection
|
|
95
95
|
*/
|
|
96
96
|
static async list(connection) {
|
|
97
|
-
return (await connection.tooling.query(`select ${exports.Package2Fields.toString()} from Package2
|
|
97
|
+
return (await connection.tooling.query(`select ${exports.Package2Fields.toString()} from Package2 ORDER BY NamespacePrefix, Name`, {
|
|
98
|
+
autoFetch: true,
|
|
99
|
+
maxFetch: 10000,
|
|
100
|
+
}))?.records;
|
|
98
101
|
}
|
|
99
102
|
/**
|
|
100
103
|
* Returns the package versions in the org.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/packaging",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Packaging library for the Salesforce packaging platform",
|
|
5
5
|
"main": "lib/exported",
|
|
6
6
|
"types": "lib/exported.d.ts",
|
|
@@ -80,9 +80,9 @@
|
|
|
80
80
|
"eslint-plugin-import": "^2.26.0",
|
|
81
81
|
"eslint-plugin-jsdoc": "^39.3.25",
|
|
82
82
|
"husky": "^8.0.1",
|
|
83
|
-
"mocha": "^10.
|
|
83
|
+
"mocha": "^10.2.0",
|
|
84
84
|
"nyc": "^15.1.0",
|
|
85
|
-
"prettier": "^2.8.
|
|
85
|
+
"prettier": "^2.8.1",
|
|
86
86
|
"pretty-quick": "^3.1.3",
|
|
87
87
|
"shelljs": "0.8.5",
|
|
88
88
|
"sinon": "14.0.2",
|