Class GulpTask

    • Field Detail

      • DEFAULT_GULP_EXECUTABLE

        public static final java.lang.String DEFAULT_GULP_EXECUTABLE
    • Constructor Detail

      • GulpTask

        public GulpTask()
    • Method Detail

      • gulpExecutable

        public GulpTask gulpExecutable​(@NotNull
                                       @NotNull java.lang.String gulpExecutable)
        Specify path to the Gulp executable for this task. Path must be relative to the working directory.

        Example: node_modules/gulp/bin/gulp.js

      • task

        public GulpTask task​(@Nullable
                             @Nullable java.lang.String task)
        Gulp task to execute. If not specified, the 'default' task will be executed. Multiple tasks can be specified separated by a space.
      • gulpfile

        public GulpTask gulpfile​(@Nullable
                                 @Nullable java.lang.String gulpfile)
        Specify path to the gulpfile, relative to the build working directory. If empty, the default gulpfile will be used. Only supported for Gulp 3.3.2 or newer.