Content deleted Content added
Visaldatta (talk | contribs) Content in this edit is translated from the existing German Wikipedia article at de:Gulp.js; see its history for attribution. |
Visaldatta (talk | contribs) No edit summary |
||
Line 7:
| Current version release date = <! - Please insert date after the version ->| OS = [[Platform independence | across platforms]]| Language = [[JavaScript]]| Category = [[Toolkit]]
| Royalty = [[MIT license]] <ref> {{Internet source | url = https://github.com/gulpjs/gulp/blob/master/LICENSE | title = License to github.com | language=en | access = 2016-05-30}} </ref>| Website = [http://gulpjs.com/ www.gulpjs.com/]}}
'' 'Gulp.js' '' is a [[process (computer science) | Task]] - Runner, based on [[Node.js]] to several[[Workflow | Workflow]] - to automate tasks in Webentwicklungsprozess. <ref> {{cite |author = Joshua Barnett | title = Building a Cross-Platform Mobile game with HTML5 | ed =University of East Anglia | compilation = | band = | number = | edition = | publisher = | ___location = |year = 2014 | pages = | ISBN = | online = http://www.caffeinatednightmare.com/mindflip/}} </ref><ref> {{cite | author = Artemij Fedosejev | title = React.js Essentials | ed = | compilation = |= tape | number = | edition = 1 | publisher = Packt Publishing | place = Birmingham | date = 2015| chapter = Installing Powerful Tools for Your Project | pages = 12-14 | ISBN = 978-1-78355-162-0}} </ref> So can gulp used, for example, to [[
== Installation ==
Line 33:
</syntaxhighlight>
Alternatively, create a task that performs several pre-defined functions. These are passed as the second parameter using an array. <syntaxhighlight lang
function fn1 () {
// do something
Line 43:
// Task with array of function names
gulp.task ( 'taskName', [
</syntaxhighlight>
|