@pi-r/gulp 0.7.1 → 0.7.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/index.js +1 -1
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -11,7 +11,7 @@ const BIN_GULP = Task.sanitizeCmd(which.sync("gulp", { nothrow: true }) || '');
|
|
|
11
11
|
const REGEXP_TIMESTAMP = /^\[\d+:\d+:\d+\]$/;
|
|
12
12
|
async function executeTasks(assets, preceding, host) {
|
|
13
13
|
if (this.aborted) {
|
|
14
|
-
return
|
|
14
|
+
return (0, types_1.createAbortError)(true);
|
|
15
15
|
}
|
|
16
16
|
return this.allSettled(this.collate(assets, preceding), ['Execute tasks', "gulp"]).then(result => {
|
|
17
17
|
if (host) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pi-r/gulp",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "Gulp task constructor for E-mc.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"homepage": "https://github.com/anpham6/pi-r#readme",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@e-mc/task": "^0.9.
|
|
24
|
-
"@e-mc/types": "^0.9.
|
|
23
|
+
"@e-mc/task": "^0.9.4",
|
|
24
|
+
"@e-mc/types": "^0.9.4",
|
|
25
25
|
"gulp": "^5.0.0",
|
|
26
26
|
"gulp-cli": "^3.0.0",
|
|
27
27
|
"strip-ansi": "6.0.1",
|