1.0.0 • Published 10 years ago
gulp-ember-order v1.0.0
gulp-ember-order
This gulp plugin allows you to use Ember.js with Gulp.js by ensuring that dependencies are loaded in the correct order.
Note: Using ES6 modules with Ember.js applications is a more elegant way to solve the problem of dependency loading order issues but if you are dealing with legacy Ember.js applications but want the goodness of Gulp.js this plugin is for you.
Installation
npm install gulp-ember-order
Usage
var gulp = require('gulp'),
order = require('gulp-ember-order'),
concat = require('gulp-concat');
gulp.src('app/**/*.js')
.pipe(order())
.pipe(concat('app.concat.js'))
.pipe(gulp.dest('build'));