mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 12:03:14 +00:00
18 lines
486 B
JavaScript
18 lines
486 B
JavaScript
var gulp = require('gulp');
|
|
var config = require('../config.js');
|
|
var utils = require('../utils.js');
|
|
|
|
|
|
|
|
|
|
gulp.task('build-underscore', function(){
|
|
return utils.buildJsGroup([
|
|
config.paths.vendors + 'underscore-amd/underscore.js'
|
|
], 'underscore', 'vendors/underscore');
|
|
});
|
|
gulp.task('build-backbone', ['build-underscore'], function(){
|
|
return utils.buildJsGroup([
|
|
config.paths.vendors + 'backbone-amd/backbone.js'
|
|
], 'backbone', 'vendors/backbone');
|
|
});
|