Skip to content

Commit

Permalink
Merge pull request #28299 from storybookjs/yann/add-telemetry-info
Browse files Browse the repository at this point in the history
Telemetry: Detect Node version
(cherry picked from commit aee10a9)
  • Loading branch information
yannbf authored and storybook-bot committed Jun 26, 2024
1 parent b6c21f4 commit 7664a3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/lib/telemetry/src/storybook-metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ export const computeStorybookMetadata = async ({

try {
const packageManagerType = await detect({ cwd: getProjectRoot() });
const packageManagerVerson = await getNpmVersion(packageManagerType);
const packageManagerVersion = await getNpmVersion(packageManagerType);

metadata.packageManager = {
type: packageManagerType,
version: packageManagerVerson,
version: packageManagerVersion,
};
// Better be safe than sorry, some codebases/paths might end up breaking with something like "spawn pnpm ENOENT"
// so we just set the package manager if the detection is successful
Expand Down
1 change: 1 addition & 0 deletions code/lib/telemetry/src/telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const globalContext = {
inCI: Boolean(process.env.CI),
isTTY: process.stdout.isTTY,
platform: getOperatingSystem(),
nodeVersion: process.versions.node,
} as Record<string, any>;

const prepareRequest = async (data: TelemetryData, context: Record<string, any>, options: any) => {
Expand Down

0 comments on commit 7664a3f

Please sign in to comment.