https://github.com/devfake/laravel-elixir-remove
Delete files / folders for Elixir version 5 and 6
https://github.com/devfake/laravel-elixir-remove
Last synced: about 1 year ago
JSON representation
Delete files / folders for Elixir version 5 and 6
- Host: GitHub
- URL: https://github.com/devfake/laravel-elixir-remove
- Owner: devfake
- Archived: true
- Created: 2015-10-14T11:20:15.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-20T08:41:19.000Z (almost 10 years ago)
- Last Synced: 2025-03-02T16:39:30.534Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Elixir Remove
Delete files / folders using globs with [del](https://www.npmjs.com/package/del) for [Laravel Elixir](https://github.com/laravel/elixir). This package is the same as [laravel-elixir-delete](https://www.npmjs.com/package/laravel-elixir-delete), but it works with Elixir version 5 and 6.
## Install
Install this package over npm.
```sh
npm install laravel-elixir-remove --save-dev
```
Require it in your `gulpfile.js` and use it.
```javascript
var elixir = require('laravel-elixir');
require('laravel-elixir-remove');
elixir(function(mix) {
mix.remove('src/file.js');
// or for multiple files:
mix.remove(['src/file.js', 'other/file.js']);
});
```