1.0.0 • Published 9 years ago

gulp-ember-order v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

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'));
1.0.0

9 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago