복붙노트

[ANGULAR] Visual Studio 2015 ASP.NET 5, GULP 작업 node_modules에서 파일을 복사하지 않음

ANGULAR

Visual Studio 2015 ASP.NET 5, GULP 작업 node_modules에서 파일을 복사하지 않음

해결법


  1. 1.사소한 감독 ... 불행히도 꿀꺽 꿀꺽 꿀꺽 꿀꺽 마시고 파일을 복사하여 파일을 복사합니다. 죄송합니다 !!

    사소한 감독 ... 불행히도 꿀꺽 꿀꺽 꿀꺽 꿀꺽 마시고 파일을 복사하여 파일을 복사합니다. 죄송합니다 !!

    /// <binding BeforeBuild='copy-assets' />
    "use strict";
    
    var _    = require('lodash'),
        gulp = require('gulp');
    
    gulp.task('copy-assets', function() {
        var assets = {
            js: [
                './node_modules/bootstrap/dist/js/bootstrap.js',
                './node_modules/systemjs/dist/system.src.js',
                './node_modules/angular2/bundles/angular2.dev.js',
                './node_modules/angular2/bundles/router.dev.js',
                './node_modules/angular2/bundles/angular2-polyfills.js',
                './node_modules/angular2/bundles/http.dev.js',
                './node_modules/rxjs/bundles/Rx.js',
                './node_modules/typescript/lib/typescript.js'
            ],
            css: ['./node_modules/bootstrap/dist/css/bootstrap.css']
        };
        _(assets).forEach(function(assets, type) {
            gulp.src(assets).pipe(gulp.dest('./wwwroot/' + type));
        });
    });
    

    :펀치:

  2. from https://stackoverflow.com/questions/34636570/visual-studio-2015-asp-net-5-gulp-task-not-copying-files-from-node-modules by cc-by-sa and MIT license