mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
# Backport This will backport the following commits from `main` to `8.11`: - [Always throw error objects - never strings (#171498)](https://github.com/elastic/kibana/pull/171498) <!--- Backport version: 8.9.7 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Thomas Watson","email":"watson@elastic.co"},"sourceCommit":{"committedDate":"2023-11-20T14:23:16Z","message":"Always throw error objects - never strings (#171498)","sha":"4f9094caf3cc4781137b7cfccbe2e1858f4f39c0","branchLabelMapping":{"^v8.12.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","backport:all-open","v8.12.0"],"number":171498,"url":"https://github.com/elastic/kibana/pull/171498","mergeCommit":{"message":"Always throw error objects - never strings (#171498)","sha":"4f9094caf3cc4781137b7cfccbe2e1858f4f39c0"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v8.12.0","labelRegex":"^v8.12.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/171498","number":171498,"mergeCommit":{"message":"Always throw error objects - never strings (#171498)","sha":"4f9094caf3cc4781137b7cfccbe2e1858f4f39c0"}}]}] BACKPORT--> Co-authored-by: Thomas Watson <watson@elastic.co>
42 lines
1.5 KiB
JavaScript
42 lines
1.5 KiB
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.
|
|
*/
|
|
|
|
(() => {
|
|
const isUsingNpm = process.env.npm_config_git !== undefined;
|
|
|
|
if (isUsingNpm) {
|
|
throw new Error(`Use Yarn instead of npm, see Kibana's contributing guidelines`);
|
|
}
|
|
|
|
// The value of the `npm_config_argv` env for each command:
|
|
//
|
|
// - `npm install`: '{"remain":[],"cooked":["install"],"original":[]}'
|
|
// - `yarn`: '{"remain":[],"cooked":["install"],"original":[]}'
|
|
// - `yarn kbn bootstrap`: '{"remain":[],"cooked":["run","kbn"],"original":["kbn","bootstrap"]}'
|
|
const rawArgv = process.env.npm_config_argv;
|
|
|
|
if (rawArgv === undefined) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const argv = JSON.parse(rawArgv);
|
|
|
|
// allow dependencies to be installed with `yarn kbn bootstrap` or `bazel run @nodejs//:yarn` (called under the hood by bazel)
|
|
if (argv.cooked.includes('kbn') || !!process.env.BAZEL_YARN_INSTALL) {
|
|
// all good, trying to install deps using `kbn` or bazel directly
|
|
return;
|
|
}
|
|
|
|
if (argv.cooked.includes('install')) {
|
|
console.log('\nWARNING: When installing dependencies, prefer `yarn kbn bootstrap`\n');
|
|
}
|
|
} catch (e) {
|
|
// if it fails we do nothing, as this is just intended to be a helpful message
|
|
}
|
|
})();
|