티스토리 뷰
반응형
task 'wiredep' is not in you gulpfile.
modify gulpfile.js.
gulp.task('bower', function () {
return gulp.src(paths.views.main)
.pipe(wiredep({
directory: 'bower_components',
ignorePath: '..'
}))
.pipe(gulp.dest(yeoman.app));
});
angular is not installed. Try running `bower install`.
the .bowerrc has the directory as "bower_components" but it should be "app/bower_components"
the 'bower' task isn't being called in the gulpfile, i added it like this
gulp.task('serve', function (cb) {
runSequence('clean:tmp',
['lint:scripts'],
['start:client'],
['bower'],
'watch', cb);
});
Cannot GET /
modify bower.json
"appPath": "./",
events.js:160
throw er; // Unhandled 'error' event
build-custom custom-js error
excute .pipe(minifyJs()) or .pipe(gulp.dest('dist/js'));
반응형
'Study' 카테고리의 다른 글
Java(자바) JSP Tomcat(톰캣) 관련 (0) | 2023.01.08 |
---|---|
Windows(윈도우) Monitor Off(모니터 끄기) 바로가기 (0) | 2023.01.07 |
gulp(걸프) 관련 (0) | 2023.01.07 |
RDash Angular(앵귤러) 관련 (0) | 2023.01.07 |
maven(메이븐) 관련 (0) | 2023.01.06 |
댓글