[ANGULAR] Visual Studio 2015 ASP.NET 5, GULP 작업 node_modules에서 파일을 복사하지 않음
ANGULARVisual Studio 2015 ASP.NET 5, GULP 작업 node_modules에서 파일을 복사하지 않음
해결법
-
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)); }); });
:펀치:
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
'ANGULAR' 카테고리의 다른 글
[ANGULAR] 각도는 templateurl을 찾을 수 없습니다 (0) | 2020.11.29 |
---|---|
[ANGULAR] Forroot 메서드 내에서 각도 호출 기능 (0) | 2020.11.28 |
[ANGULAR] 각도 4 - 오류 TypeError, 오류 컨텍스트 DebugContext_ (0) | 2020.11.28 |
[ANGULAR] 템플리트 인 - 컨텐츠 사용 (0) | 2020.11.28 |
[ANGULAR] 지시문에서 상위 요소로 이벤트를 방출하십시오 (0) | 2020.11.28 |