@vamship/build-utils 2.5.0 → 2.5.1
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/package.json
CHANGED
@@ -52,13 +52,7 @@ export class TestTaskBuilder extends TaskBuilder {
|
|
52
52
|
jsRootDir.getChild(`test/${this._testType}`).getAllFilesGlob('js'),
|
53
53
|
];
|
54
54
|
|
55
|
-
const task = () =>
|
56
|
-
_execa(c8Bin, args, { stdio: 'inherit' }).then(undefined, () => {
|
57
|
-
/*
|
58
|
-
* Do nothing. This handler prevents the gulp task from
|
59
|
-
* crashing with an unhandled error.
|
60
|
-
*/
|
61
|
-
});
|
55
|
+
const task = () => _execa(c8Bin, args, { stdio: 'inherit' });
|
62
56
|
return task;
|
63
57
|
}
|
64
58
|
|