Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-10T03:22:15.000Z (about 9 years ago)
- Last Synced: 2024-11-14T00:03:47.421Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 145 KB
- Stars: 1
- Watchers: 2
- 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)