私は gulp usemin タスクを使用して、HTML の css ファイルと js ファイルを組み合わせて最小化/醜くしています。
gulp.task('usemin',['jshint'], function () {
return gulp.src('./app/**/*.html')
.pipe(usemin({
css:[minifycss(),rev()],
js: [uglify(),rev()]
}))
.pipe(gulp.dest('dist/'));
});
そしてHTMLの私のブロック:
<!-- build:css styles/main.css -->
<link href="../bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="../bower_components/bootstrap/dist/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="styles/home.css" rel="stylesheet">
<link href="../bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!-- endbuild -->
<!-- build:js scripts/main.js -->
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<script src="../bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="../bower_components/angular/angular.min.js"></script>
<script src="../bower_components/jquery-ui/jquery-ui.min.js"></script>
<script src="scripts/home.js"></script>
<script src="scripts/controllers.js"></script>
<!-- endbuild -->
しかし、私がこれを行った後。dist/ では、他のすべての部分は app/ と同様にうまく機能しますが、jquery-ui.jsです。jquery-ui が原因で、ページのカラー アニメーションが機能しません。
ファイル構造: ファイル構造
これはどうやってできるの?1 つの js ファイルだけが機能しませんが、他のファイルは正常に機能しますか?