aurelia-view-manager
Version:
A view manager for aurelia plugins. Add support for overriding views, and multiple frameworks
29 lines (24 loc) • 855 B
JavaScript
var gulp = require('gulp');
var tools = require('aurelia-tools');
var args = require('../args');
// source code for the tasks called in this file
// is located at: https://github.com/aurelia/tools/blob/master/src/dev.js
// updates dependencies in this folder
// from folders in the parent directory
gulp.task('update-own-deps', function() {
tools.updateOwnDependenciesFromLocalRepositories(args.depth);
});
// quickly pulls in all of the aurelia
// github repos, placing them up one directory
// from where the command is executed,
// then runs `npm install`
// and `gulp build` for each repo
gulp.task('build-dev-env', function() {
tools.buildDevEnv();
});
// quickly pulls in all of the aurelia
// github repos, placing them up one directory
// from where the command is executed
gulp.task('pull-dev-env', function() {
tools.pullDevEnv();
});