Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artem328/gulp-coffeescript-concat
Gulp plugin based on coffeescript-concat
https://github.com/artem328/gulp-coffeescript-concat
Last synced: about 1 month ago
JSON representation
Gulp plugin based on coffeescript-concat
- Host: GitHub
- URL: https://github.com/artem328/gulp-coffeescript-concat
- Owner: artem328
- License: mit
- Created: 2016-05-05T08:46:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-05-09T06:05:13.000Z (over 8 years ago)
- Last Synced: 2024-11-09T20:36:00.877Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-coffeescript-concat
## Overview
Gulp plugin based on [coffeescript-concat](https://github.com/fairfieldt/coffeescript-concat)
## Installation
Install package with NPM and add it to your development dependencies:
`npm install --save-dev gulp-coffeescript-concat`
## Usage
```js
var coffeeConcat = require('gulp-coffeescript-concat');gulp.task('coffee', function() {
return gulp.src(['coffee/*.coffee', 'coffee/**/*.coffee'])
.pipe(coffeeConcat('all.coffee'))
.pipe(gulp.dest('dist'));
});
```This will concat coffeescript files in right order for resolving class dependencies. For more information about dependency resolving you can get at [coffeescript-concat page](https://github.com/fairfieldt/coffeescript-concat#coffeescript-concat-performs-4-operations).
## Licence
MIT, see [LICENCE](https://github.com/artem328/gulp-coffeescript-concat/blob/master/LICENSE) file