b324cd3b6b
Both jshint and jslint contain the 'do no evil' license which makes it unusable for OpenStack. This patch switches this project to use eslint, the published eslint-config-openstack rules, and the john-papa eslint style guides. It also adds the 'npm run lint' command used by infra in the javascript-jobs macro. Change-Id: I724d3a12fb5b9c85446adcd07c03a676e966bd41
18 lines
305 B
JavaScript
18 lines
305 B
JavaScript
'use strict';
|
|
|
|
var config = require('../config');
|
|
var browserSync = require('browser-sync');
|
|
var gulp = require('gulp');
|
|
|
|
gulp.task('browserSync', function() {
|
|
|
|
browserSync({
|
|
port: config.browserPort,
|
|
ui: {
|
|
port: config.UIPort
|
|
},
|
|
proxy: 'localhost:' + config.serverPort
|
|
});
|
|
|
|
});
|