All Versions
42
Latest Version
Avg Release Cycle
70 days
Latest Release
1810 days ago

Changelog History
Page 2

  • v3.8.9 Changes

    • 🛠 fix local version undefined output
    • ➕ add completion for fish shell
    • 🛠 fix powershell completion line splitting
    • ➕ add support for arbitrary node flags (oops, should have been a minor bump)
    • ➕ add v8flags dependency
    • ⚡️ update dependencies (liftoff)
    • 📚 documentation tweaks
  • v3.8.8 Changes

    • ⚡️ update dependencies (minimist, tildify)
    • 📚 documentation tweaks
  • v3.8.7 Changes

    • 🖐 handle errors a bit better
    • ⚡️ update dependencies (gulp-util, semver, etc)
    • 📚 documentation tweaks
  • v3.8.6 Changes

    • ✂ remove executable flag from LICENSE
    • ⚡️ update dependencies (chalk, minimist, liftoff, etc)
    • 📚 documentation tweaks
  • v3.8.5 Changes

    • simplify --silent and --tasks-simple
    • 🛠 fix bug in autocomplete where errors would come out
  • v3.8.4 Changes

    • CLI will use exit code 1 on exit when any task fails during the lifetime of the process
  • v3.8.3 Changes

    • 🔌 Tweak error formatting to work better with PluginErrors and strings
  • v3.8.2 Changes

    • ➕ add manpage generation
  • v3.8.1 Changes

    • the CLI now adds process.env.INIT_CWD which is the original cwd it was launched from
  • v3.8.0 Changes

    • ⚡️ update vinyl-fs
      • gulp.src is now a writable passthrough, this means you can use it to add files to your pipeline at any point
      • gulp.dest can now take a function to determine the folder

    This is now possible!

    gulp.src('lib/*.js')
      .pipe(uglify())
      .pipe(gulp.src('styles/*.css'))
      .pipe(gulp.dest(function(file){
        // I don't know, you can do something cool here
        return 'build/whatever';
      }));