Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Telemetry: Is interactive shell #21436

Merged
merged 3 commits into from Mar 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/lib/csf-tools/package.json
@@ -1,7 +1,7 @@
{
"name": "@storybook/csf-tools",
"version": "7.0.0-beta.62",
"description": "",
"description": "Parse and manipulate CSF and Storybook config files",
"keywords": [
"storybook"
],
Expand Down
2 changes: 1 addition & 1 deletion code/lib/manager-api/package.json
@@ -1,7 +1,7 @@
{
"name": "@storybook/manager-api",
"version": "7.0.0-beta.62",
"description": "Core Storybook API & Context",
"description": "Core Storybook Manager API & Context",
"keywords": [
"storybook"
],
Expand Down
1 change: 1 addition & 0 deletions code/lib/telemetry/src/telemetry.ts
Expand Up @@ -31,6 +31,7 @@ export async function sendTelemetry(
: {
anonymousId: getAnonymousProjectId(),
inCI: Boolean(process.env.CI),
isTTY: process.stdout.isTTY,
};
const eventId = nanoid();
const body = { ...rest, eventType, eventId, sessionId, metadata, payload, context };
Expand Down
2 changes: 1 addition & 1 deletion code/lib/types/package.json
@@ -1,7 +1,7 @@
{
"name": "@storybook/types",
"version": "7.0.0-beta.62",
"description": "Core Storybook Types",
"description": "Core Storybook TS Types",
"keywords": [
"storybook"
],
Expand Down