在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):robatron/gulp-chug开源软件地址(OpenSource Url):https://github.com/robatron/gulp-chug开源编程语言(OpenSource Language):JavaScript 100.0%开源软件介绍(OpenSource Introduction):gulp-chug
gulp-chug is non-modifying, i.e., gulp-chug will return the same stream it receives. See Use with other plugins for an example. Requires node >= 0.10 Inspired by shama's grunt-hub. Note: This plugin has been blacklisted, however I have yet to find an example of a pattern that allows for the execution of child gulpfiles without task name collisions. If you have an example, let me know! InstallInstall with npm: npm install gulp-chug UsageRun external gulpfilesRun one external gulpfile: var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );
gulp.task( 'default', function () {
gulp.src( './subproj/gulpfile.js' )
.pipe( chug() )
} ); Run multiple external gulpfiles: var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );
gulp.task( 'default', function () {
// Find and run all gulpfiles under all subdirectories
gulp.src( './**/gulpfile.js' )
.pipe( chug() )
} ); Use with other pluginsgrunt-chug will not modify streams passed to it, but will happily accept streams modified by other plugins: var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );
var replace = require( 'gulp-replace' );
gulp.task( 'default', function () {
gulp.src( './subproj/gulpfile.js' )
// Transform stream with gulp-replace
.pipe( replace( 'Hello', 'Goodbye' ) )
// Run modified stream with gulp-chug
.pipe( chug() )
} ); Make gulp-chug faster by ignoring file contentsIf gulp-chug is the only plugin in the stream, there's no need to actually read
the contents of the gulpfiles. Set var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );
gulp.task( 'default', function () {
gulp.src( './subproj/gulpfile.js', { read: false } )
.pipe( chug() )
} ); OptionsGulp chug supports several options, all of which are optional, e.g., var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );
gulp.task( 'default', function () {
gulp.src( './subproj/gulpfile.js' )
.pipe( chug( {
nodeCmd: 'node',
tasks: [ 'default' ],
args: [ '--my-arg-1', '--my-arg-2' ]
} ) );
} ); tasksThe tasks to run from each gulpfile. Default is chug( {
tasks: [ 'my-task-1', 'my-task-2' ]
} ) nodeCmdThe node command to spawn when running gulpfiles. Default is chug( {
nodeCmd: './my-node-bin'
} ) argsAdditional command-line arguments to pass to each spawned process. Default is none. chug( {
args: [ '--my-arg-1', '--my-arg-2' ]
} ) CallbackYou can pass a callback function to gulp chug that will be executed after the external gulpfile has finished running. var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );
gulp.task( 'default', function () {
gulp.src( './subproj/gulpfile.js' )
.pipe( chug( function () {
console.log( 'Done' );
} ) )
} ); In combination with gulp-chug options: var gulp = require( 'gulp' );
var chug = require( 'gulp-chug' );
gulp.task( 'default', function () {
gulp.src( './subproj/gulpfile.js' )
.pipe( chug( {
tasks: [ 'my-task-1', 'my-task-2' ]
}, function () {
console.log( 'Done' );
} ) )
} ); See also
Changelog0.4
0.3
0.2
0.1
LicenseThe MIT License (MIT) Copyright (c) 2014 Rob McGuire-Dale Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论