معرفی شرکت ها


grunt-concurrent-3.0.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Run grunt tasks concurrently
ویژگی مقدار
سیستم عامل -
نام فایل grunt-concurrent-3.0.0
نام grunt-concurrent
نسخه کتابخانه 3.0.0
نگهدارنده ['sindresorhus']
ایمیل نگهدارنده ['sindresorhus@gmail.com']
نویسنده Sindre Sorhus
ایمیل نویسنده sindresorhus@gmail.com
آدرس صفحه اصلی git+https://github.com/sindresorhus/grunt-concurrent.git
آدرس اینترنتی https://github.com/sindresorhus/grunt-concurrent#readme
مجوز MIT
# grunt-concurrent [![Build Status](https://travis-ci.org/sindresorhus/grunt-concurrent.svg?branch=master)](https://travis-ci.org/sindresorhus/grunt-concurrent) > Run grunt tasks concurrently <img src="screenshot.png" width="439"> Running slow tasks like Coffee and Sass concurrently can potentially improve your build time significantly. This task is also useful if you need to run [multiple blocking tasks](#logconcurrentoutput) like `nodemon` and `watch` at once. ## Install ``` $ npm install --save-dev grunt-concurrent ``` ## Usage ```js require('load-grunt-tasks')(grunt); grunt.initConfig({ concurrent: { target1: ['coffee', 'sass'], target2: ['jshint', 'mocha'] } }); // Tasks of target1 run concurrently, after they all finished, tasks of target2 run concurrently, instead of target1 and target2 running concurrently. grunt.registerTask('default', ['concurrent:target1', 'concurrent:target2']); ``` ## Sequential tasks in concurrent target ```js grunt.initConfig({ concurrent: { target: [['jshint', 'coffee'], 'sass'] } }); ``` Now `jshint` will always be done before `coffee` and `sass` runs independent of both of them. ## Options ### limit Type: `number`<br> Default: Twice the number of CPU cores with a minimum of 2 Limit how many tasks that are run concurrently. ### logConcurrentOutput Type: `boolean`<br> Default: `false` You can optionally log the output of your concurrent tasks by specifying the `logConcurrentOutput` option. Here is an example config which runs [grunt-nodemon](https://github.com/ChrisWren/grunt-nodemon) to launch and monitor a node server and [grunt-contrib-watch](https://github.com/gruntjs/grunt-contrib-watch) to watch for asset changes all in one terminal tab: ```js grunt.initConfig({ concurrent: { target: { tasks: ['nodemon', 'watch'], options: { logConcurrentOutput: true } } } }); grunt.loadNpmTasks('grunt-concurrent'); grunt.registerTask('default', ['concurrent:target']); ``` *The output will be messy when combining certain tasks. This option is best used with tasks that don't exit like `watch` and `nodemon` to monitor the output of long-running concurrent tasks.* ### indent Type: `boolean`<br> Default: `true` You can optionally skip indenting the log output of your concurrent tasks by specifying `false`. This can be useful for running tasks in parallel for a stdout parser which expects no indentation, for example, TeamCity tests.


نیازمندی

مقدار نام
^2.0.1 arrify
^3.1.0 async
^4.0.0 indent-string
^2.0.0 pad-stream


زبان مورد نیاز

مقدار نام
8.16.0 Npm


نحوه نصب


نصب پکیج tgz grunt-concurrent-3.0.0:

    npm install grunt-concurrent-3.0.0.tgz