mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 10:40:07 -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>
17 lines
632 B
JavaScript
Executable file
17 lines
632 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires*/
|
|
require('@babel/register')({
|
|
extensions: ['.ts', '.js'],
|
|
presets: [['@babel/preset-env', { targets: { node: 'current' } }], '@babel/preset-typescript'],
|
|
});
|
|
|
|
require('../src/cli').runSynthtrace();
|