Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(491)

Unified Diff: web/apps/rpcexplorer/gulpfile.js

Issue 1960443004: Add rpcexplorer to webapp hierarchy. (Closed) Base URL: https://github.com/luci/luci-go@logdog-project-web
Patch Set: Updated license, clarified instructions. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: web/apps/rpcexplorer/gulpfile.js
diff --git a/web/apps/logdog-app/gulpfile.js b/web/apps/rpcexplorer/gulpfile.js
similarity index 54%
copy from web/apps/logdog-app/gulpfile.js
copy to web/apps/rpcexplorer/gulpfile.js
index 929c690ed47424bb4259582a8141aaa677e88f04..2b6ba02ba1bda4ac863c2661cffd4c0c99f1d04a 100644
--- a/web/apps/logdog-app/gulpfile.js
+++ b/web/apps/rpcexplorer/gulpfile.js
@@ -9,7 +9,14 @@
// Include Gulp & tools we'll use
var gulp = require('gulp');
var luci = require('../gulp-common.js');
+var path = require('path');
luci.setup(gulp, {
dir: __dirname,
+ includes: function(gulp, layout) {
+ return gulp.src([
+ path.join('inc', 'bower_components', 'bootstrap', 'dist', 'css',
+ 'bootstrap.min.css'),
+ ]).pipe(gulp.dest(layout.dist('inc/bower_components/bootstrap/dist/css')));
+ },
});

Powered by Google App Engine
This is Rietveld 408576698