aberlaas-helper 2.22.3 → 2.24.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/lib/helper.js +1 -2
- package/package.json +3 -3
package/lib/helper.js
CHANGED
|
@@ -131,7 +131,6 @@ export const __ = {
|
|
|
131
131
|
`Provided config file (${userConfigPath}) not found`,
|
|
132
132
|
);
|
|
133
133
|
}
|
|
134
|
-
// TODO: Add a test for that
|
|
135
134
|
|
|
136
135
|
return await firostImport(configPath, { forceReload: true });
|
|
137
136
|
}
|
|
@@ -155,7 +154,7 @@ export const __ = {
|
|
|
155
154
|
*/
|
|
156
155
|
/**
|
|
157
156
|
* Run a yarn command from the host git root
|
|
158
|
-
* @param {string} command Command to run (e.g., 'test', 'lint', 'test --
|
|
157
|
+
* @param {string} command Command to run (e.g., 'test', 'lint', 'test --fail-fast')
|
|
159
158
|
* @returns {Promise} Result of the command execution
|
|
160
159
|
*/
|
|
161
160
|
async yarnRun(command) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aberlaas-helper",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.24.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "aberlaas shared helper: Common methods used by all commands",
|
|
6
6
|
"author": "Tim Carry <tim@pixelastic.com>",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
},
|
|
20
20
|
"main": "./lib/main.js",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"aberlaas-versions": "2.
|
|
23
|
-
"firost": "5.
|
|
22
|
+
"aberlaas-versions": "2.24.0",
|
|
23
|
+
"firost": "5.6.1",
|
|
24
24
|
"golgoth": "3.1.0"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|