chore(gulp): don't symlink node_modules for dart examples
Oups, missed this earlier.
This commit is contained in:
parent
761ec00d02
commit
2739fb11a5
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue