https://github.com/pryley/elixir-rsync
Rsync gulp task for Laravel Elixir https://github.com/laravel/elixir
https://github.com/pryley/elixir-rsync
Last synced: 4 months ago
JSON representation
Rsync gulp task for Laravel Elixir https://github.com/laravel/elixir
- Host: GitHub
- URL: https://github.com/pryley/elixir-rsync
- Owner: pryley
- License: mit
- Created: 2015-08-29T06:24:53.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-10T03:22:15.000Z (over 9 years ago)
- Last Synced: 2025-03-12T02:01:58.034Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 145 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Elixir Rsync
## Install
```bash
$ npm install elixir-rsync --save-dev
```## Usage
### Example `gulpfile.js`
```js
var elixir = require( 'laravel-elixir' );require( 'elixir-rsync' );
elixir( function( mix )
{
mix.rsync( 'theme/src/', 'public/theme' );
});
```### Advanced Example
```js
var elixir = require( 'laravel-elixir' );require( 'elixir-rsync' );
elixir( function( mix )
{
mix.rsync( 'theme/src/', 'public/theme', '-rc --delete' );
});
```# License
[MIT](/LICENSE)