kibana/x-pack/gulpfile.js

44 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-04-20 21:13:41 +02:00
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
require('@kbn/plugin-helpers').babelRegister();
require('dotenv').config({ silent: true });
const path = require('path');
[6.x] Chore: canvas in xpack 6x (#22695) (#23201) * chore: merge canavs into x-pack squashed, since 6.x history isn't important and i want to be able to rebase... * chore: eslint fixes in canvas adds license headers and includes project linting overrides * Chore: Reorg the x-pack gulp tasks (#22785) - Removes deprecated, non-functional lint scripts - Removes some unused (and barely used) dependencies - Replaces deprecated `gulp-util` dependency - Adds eslint rule to prevent future use of deprecated `gulp-util` dependency - Moves all gulp tasks into `tasks` path - Moves `gulp_helpers` into `tasks/helpers` - All tasks in `gulpfile.js` were moved into `tasks` and broken up by domain This is basically a no-op moving files around PR. All the existing tasks appear to work the same with these changes. <img width="334" alt="screenshot 2018-09-06 15 42 45" src="https://user-images.githubusercontent.com/404731/45188971-8618c000-b1eb-11e8-9b26-b072ccc7ddb7.png"> * chore: rename files to match rules * chore: copy canvas dependencies * chore: reduce package.json to essentials * chore: make canvas work in xpack * chore: make browser tests work * chore: fix include paths node_modules is in a different relative path * chore: fix ml tests with canvas code in x-pack explicitely enable state management so the mlStateFactory tests pass * chore: fix RBAC tests with canvas * chore: split up the xpack prepare scripts * chore: canvas tasks - dev, peg, and plugins get dev, peg, and plugin building tasks working * chore: canvas tasks - local tests * chore: additional file cleanup * chore: yarn lockfiles and eslint fixes license headers and some small formatting stuff
2018-09-15 01:26:56 +02:00
const gulp = require('gulp');
const mocha = require('gulp-mocha');
const pegjs = require('gulp-pegjs');
const multiProcess = require('gulp-multi-process');
const fancyLog = require('fancy-log');
const ansiColors = require('ansi-colors');
2018-04-20 21:13:41 +02:00
const pkg = require('./package.json');
const buildDir = path.resolve(__dirname, 'build');
const buildTarget = path.resolve(buildDir, 'plugin');
const packageDir = path.resolve(buildDir, 'distributions');
const coverageDir = path.resolve(__dirname, 'coverage');
[6.x] Chore: canvas in xpack 6x (#22695) (#23201) * chore: merge canavs into x-pack squashed, since 6.x history isn't important and i want to be able to rebase... * chore: eslint fixes in canvas adds license headers and includes project linting overrides * Chore: Reorg the x-pack gulp tasks (#22785) - Removes deprecated, non-functional lint scripts - Removes some unused (and barely used) dependencies - Replaces deprecated `gulp-util` dependency - Adds eslint rule to prevent future use of deprecated `gulp-util` dependency - Moves all gulp tasks into `tasks` path - Moves `gulp_helpers` into `tasks/helpers` - All tasks in `gulpfile.js` were moved into `tasks` and broken up by domain This is basically a no-op moving files around PR. All the existing tasks appear to work the same with these changes. <img width="334" alt="screenshot 2018-09-06 15 42 45" src="https://user-images.githubusercontent.com/404731/45188971-8618c000-b1eb-11e8-9b26-b072ccc7ddb7.png"> * chore: rename files to match rules * chore: copy canvas dependencies * chore: reduce package.json to essentials * chore: make canvas work in xpack * chore: make browser tests work * chore: fix include paths node_modules is in a different relative path * chore: fix ml tests with canvas code in x-pack explicitely enable state management so the mlStateFactory tests pass * chore: fix RBAC tests with canvas * chore: split up the xpack prepare scripts * chore: canvas tasks - dev, peg, and plugins get dev, peg, and plugin building tasks working * chore: canvas tasks - local tests * chore: additional file cleanup * chore: yarn lockfiles and eslint fixes license headers and some small formatting stuff
2018-09-15 01:26:56 +02:00
const gulpHelpers = {
buildDir,
buildTarget,
colors: ansiColors,
coverageDir,
log: fancyLog,
mocha,
multiProcess,
packageDir,
pegjs,
pkg,
2018-04-20 21:13:41 +02:00
};
[6.x] Chore: canvas in xpack 6x (#22695) (#23201) * chore: merge canavs into x-pack squashed, since 6.x history isn't important and i want to be able to rebase... * chore: eslint fixes in canvas adds license headers and includes project linting overrides * Chore: Reorg the x-pack gulp tasks (#22785) - Removes deprecated, non-functional lint scripts - Removes some unused (and barely used) dependencies - Replaces deprecated `gulp-util` dependency - Adds eslint rule to prevent future use of deprecated `gulp-util` dependency - Moves all gulp tasks into `tasks` path - Moves `gulp_helpers` into `tasks/helpers` - All tasks in `gulpfile.js` were moved into `tasks` and broken up by domain This is basically a no-op moving files around PR. All the existing tasks appear to work the same with these changes. <img width="334" alt="screenshot 2018-09-06 15 42 45" src="https://user-images.githubusercontent.com/404731/45188971-8618c000-b1eb-11e8-9b26-b072ccc7ddb7.png"> * chore: rename files to match rules * chore: copy canvas dependencies * chore: reduce package.json to essentials * chore: make canvas work in xpack * chore: make browser tests work * chore: fix include paths node_modules is in a different relative path * chore: fix ml tests with canvas code in x-pack explicitely enable state management so the mlStateFactory tests pass * chore: fix RBAC tests with canvas * chore: split up the xpack prepare scripts * chore: canvas tasks - dev, peg, and plugins get dev, peg, and plugin building tasks working * chore: canvas tasks - local tests * chore: additional file cleanup * chore: yarn lockfiles and eslint fixes license headers and some small formatting stuff
2018-09-15 01:26:56 +02:00
require('./tasks/build')(gulp, gulpHelpers);
require('./tasks/clean')(gulp, gulpHelpers);
require('./tasks/dev')(gulp, gulpHelpers);
require('./tasks/prepare')(gulp, gulpHelpers);
require('./tasks/report')(gulp, gulpHelpers);
require('./tasks/test')(gulp, gulpHelpers);
require('./plugins/canvas/tasks')(gulp, gulpHelpers);