Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 820 Bytes

README.md

File metadata and controls

34 lines (24 loc) · 820 Bytes

gulp-jspm-local

NPM version

A gulp task for updating your local dependencies installed by jspm-local endpoint.

Installation

Install gulp-jspm-local using npm into your global or local repository.

npm install gulp-jspm-local --save-dev

Usage

Setup a gulp task update-own-deps and execute updateLocalDependencies().

var gulp = require('gulp');
var tools = require('gulp-jspm-local');

// updates dependencies in this folder
// from folders in the parent directory
gulp.task('update-own-deps', function() {
  return tools.updateLocalDependencies();
});

License

Apache 2.0