mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
* rename @elastic/* packages to @kbn/* * update yarn.lock * [CI] Auto-commit changed files from 'node scripts/generate packages_build_manifest' * update lint task * review feedback Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
16 lines
823 B
JavaScript
16 lines
823 B
JavaScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
require('../src/setup_node_env');
|
|
|
|
// We have to import directly from package since scenarios and worker.js are imported dynamically,
|
|
// If we import the package (require('@kbn/apm-synthtrace')) the program will be executed on the compiled files, and thus we need to
|
|
// compile scenarios with `yarn kbn bootstrap` every time scenario changes.
|
|
|
|
// eslint-disable-next-line @kbn/imports/uniform_imports
|
|
require('../packages/kbn-apm-synthtrace/src/cli').runSynthtrace();
|