addons/vscode/extension/utils.tsblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318import packageJson from '../package.json';
b69ab319
b69ab3110/** The version of the vscode extension, defined by the package.json (at build time),
b69ab3111 * or '(dev)' when running from source in a dev build (from `yarn watch-extension`). */
b69ab3112export const extensionVersion =
b69ab3113 process.env.NODE_ENV === 'development' ? '(dev)' : packageJson.version;