Skip to content
This repository was archived by the owner on Oct 28, 2020. It is now read-only.

Commit d30b5ac

Browse files
author
TED Vortex (Teodor Eugen Dutulescu)
authored
Merge pull request #44 from superleap/gils42-transpile-es5-fail
fix(gulp): properly assessed package command
2 parents 62427e8 + 7face0a commit d30b5ac

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

gulpfile.babel.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,11 @@ gulp.task(`setup`, [`clean`], () => {
187187
});
188188
});
189189

190-
gulp.task(`postinstall`, [`test:publish`]);
191-
gulp.task(`clean`, [`clean:docs`, `clean:manual`]);
190+
192191
gulp.task(`test:install`, [`nsp`, `snyk`, `bithound`]);
193-
gulp.task(`test:publish`, [`test:install`, `package`]);
192+
gulp.task(`test:publish`, [`package`]);
194193
gulp.task(`test`, [`lint`]);
194+
gulp.task(`clean`, [`clean:docs`, `clean:manual`]);
195+
gulp.task(`postinstall`, [`test:install`]);
196+
gulp.task(`prepublish`, [`test:publish`]);
195197
gulp.task(`default`, [`test`]);

0 commit comments

Comments
 (0)