chore(gulp): don't symlink node_modules for dart examples

Oups, missed this earlier.
This commit is contained in:
Patrice Chalin 2016-06-15 15:28:06 -07:00
parent 761ec00d02
commit 2739fb11a5
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ gulp.task('help', taskListing.withFilters(function(taskName) {
// requires admin access because it adds symlinks
gulp.task('add-example-boilerplate', function() {
var realPath = path.join(EXAMPLES_PATH, '/node_modules');
var nodeModulesPaths = getNodeModulesPaths(EXAMPLES_PATH);
var nodeModulesPaths = excludeDartPaths(getNodeModulesPaths(EXAMPLES_PATH));
nodeModulesPaths.forEach(function(linkPath) {
gutil.log("symlinking " + linkPath + ' -> ' + realPath)