| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright 2016 The LUCI Authors. All rights reserved. | 2 Copyright 2016 The LUCI Authors. All rights reserved. |
| 3 Use of this source code is governed under the Apache License, Version 2.0 | 3 Use of this source code is governed under the Apache License, Version 2.0 |
| 4 that can be found in the LICENSE file. | 4 that can be found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 'use strict'; | 7 'use strict'; |
| 8 | 8 |
| 9 var packageJsonFile = '../../package.json'; |
| 10 |
| 9 // Include Gulp & tools we'll use | 11 // Include Gulp & tools we'll use |
| 10 var gulp = require('gulp'); | 12 var gulp = require('gulp'); |
| 11 var luci = require('../gulp-common.js'); | 13 var luci = require('../gulp-common.js'); |
| 12 | 14 |
| 13 luci.setup(gulp, { | 15 luci.setup(gulp, { |
| 14 dir: __dirname, | 16 dir: __dirname, |
| 15 }); | 17 }); |
| OLD | NEW |