0.8.0 • Published 4 years ago

gulp-shell v0.8.0

Weekly downloads
96,539
License
MIT
Repository
github
Last release
4 years ago

gulp-shell

NPM version Build Status Coveralls Status Dependency Status Downloads

A handy command line interface for gulp

Installation

npm install --save-dev gulp-shell

Usage

const gulp = require('gulp')
const shell = require('gulp-shell')

gulp.task('example', () => {
  return gulp
    .src('*.js', { read: false })
    .pipe(shell(['echo <%= file.path %>']))
})

Or you can use this shorthand:

gulp.task('greet', shell.task('echo Hello, World!'))

You can find more examples in the gulpfile of this project.

WARNING: Running commands like gulp.src('').pipe(shell('whatever')) is considered as an anti-pattern. PLEASE DON'T DO THAT ANYMORE.

API

shell(commands, options) or shell.task(commands, options)

commands

type: string or Array<string>

A command can be a template which can be interpolated by some file info (e.g. file.path).

WARNING: Using command templates can be extremely dangerous. Don't shoot yourself in the foot by passing arguments like $(rm -rf $HOME).

options.cwd

type: string

default: process.cwd()

Sets the current working directory for the command. This can be a template which can be interpolated by some file info (e.g. file.path).

options.env

type: object

By default, all the commands will be executed in an environment with all the variables in process.env and PATH prepended by ./node_modules/.bin (allowing you to run executables in your Node's dependencies).

You can override any environment variables with this option.

For example, setting it to { PATH: process.env.PATH } will reset the PATH if the default one brings your some troubles.

options.shell

type: string

default: /bin/sh on UNIX, and cmd.exe on Windows

Change it to bash if you like.

options.quiet

type: boolean

default: false

By default, it will print the command output.

options.verbose

type: boolean

default: false

Set to true to print the command(s) to stdout as they are executed

options.ignoreErrors

type: boolean

default: false

By default, it will emit an error event when the command finishes unsuccessfully.

options.errorMessage

type: string

default: Command `<%= command %>` failed with exit code <%= error.code %>

You can add a custom error message for when the command fails. This can be a template which can be interpolated with the current command, some file info (e.g. file.path) and some error info (e.g. error.code).

options.templateData

type: object

The data that can be accessed in template.

Changelog

Details changes for each release are documented in the release notes.

@tyz-wallet/tyz-wallet-core-buildnode-nginx-conflavanta-elixirbitcore-build-polisgulpstart-wordpressenquirieskart-masway-ma@spothero/acelaravel-elixir-laroutets-aio@infinitebrahmanuniverse/nolb-gulp-slaravel-elixir-gulp-v4-compatsimplified-build@everything-registry/sub-chunk-1811openflow-cligcsjeloquentjseggemail-editordsnyautoeip-admin-uidynaware-gulp-tasksect-libraryectbase-libraryedx-ui-toolkitelixir-rsyncenflow-laravel-elixireonacore-buildetsc-customopenflow-nodered-cliopenport-ioopenport-testpaperchecknixin-clinueva-funcionalidad-para-el-paquete-npm-merquililyconynuevo-libro-merquililyconymm-app-gulp-buildmodular-servermobileformsnodalpinenhs-core-utilspegakit-build-toolspitcore-buildnw-filedrivenw-gulp-taskspos-ui-app-builderposqcore-buildpotcore-buildpotionsellerpractica2-sytwpax.libx.jspcxcore-buildno-sequencemomentumjsnayrationpath-togitbook-start-heroku-P8-josue-nayragitbook-start-heroku-P9-josue-nayragitbook-start-heroku-alex-moigitbook-start-heroku-josue-nayragitbook-start-heroku-localstrategy-alex-moigitbook-start-heroku-localstrategy-noejaco17gitbook-start-heroku-merquililyconygitbook-start-heroku-noejaco-finalgitbook-start-heroku-p7-josue-nayragitbook-start-heroku-t-noejacogitbook-start-heroku-token-alex-moigitbook-start-heroku-token-oauth-alex-moigitbook-start-heroku-token-oauth-noejaco17gitbook-start-https-alex-moigitbook-start-https-noejacogitbook-start-alex-moi-niteshgitbook-start-babelgitbook-start-demo-jacobogitbook-start-eltgitbook-start-plugin-iaas-ull-es-ericlucastaniagitbook-start-plugin-iaas-ull-es-noejaco2017gitbook-start-proyectofinal-noejacogitbook-start-proyectofinal-noejaco17gitbook-start-team-noejaco2017gitbook-start-team-noejaco2017-1.0gitbook-start-team-noejaco2017-2.0gitbook-start-team-noejaco2017-3.0gitbook-start-team-noejaco2017-4.0gitbook-start-iaas-bbdd-alex-moigitbook-start-iaas-ull-es-alex-moigitbook-start-iaas-ull-es-merquililyconygitbook-start-josue-nayragitbook-start-mongo-noejacogitbook-start-plugin-general-noejaco17gitbook-start-plugin-heroku-noejaco2017gitbook-start-digitalocean-merquililyconygulp-crometricsgulp-iis-expressgulp-onejs-buildgulp-pbuildgulp-jspm-nimedevgulp-pylintgulp-pypihapi-mongo-plugin
0.8.0

4 years ago

0.7.1

5 years ago

0.7.0

5 years ago

0.6.5

6 years ago

0.6.4

6 years ago

0.6.3

7 years ago

0.6.2

7 years ago

0.6.1

7 years ago

0.6.0

7 years ago

0.5.2

8 years ago

0.5.1

8 years ago

0.5.0

9 years ago

0.4.3

9 years ago

0.4.2

9 years ago

0.4.1

9 years ago

0.4.0

9 years ago

0.3.0

9 years ago

0.2.11

9 years ago

0.2.10

10 years ago

0.2.9

10 years ago

0.2.8

10 years ago

0.2.7

10 years ago

0.2.6

10 years ago

0.2.5

10 years ago

0.2.4

10 years ago

0.2.3

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago