Skip to content

Commit

Permalink
Add telemetry for turbotrace
Browse files Browse the repository at this point in the history
  • Loading branch information
Brooooooklyn committed Nov 4, 2022
1 parent 4ffde56 commit 381f724
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/next/build/webpack-config.ts
Expand Up @@ -2120,6 +2120,7 @@ export default async function getBaseWebpackConfig(
['swcRemoveConsole', !!config.compiler?.removeConsole],
['swcImportSource', !!jsConfig?.compilerOptions?.jsxImportSource],
['swcEmotion', !!config.compiler?.emotion],
['turbotrace', !!config.experimental.turbotrace],
SWCBinaryTarget,
].filter<[Feature, boolean]>(Boolean as any)
)
Expand Down
2 changes: 2 additions & 0 deletions packages/next/build/webpack/plugins/telemetry-plugin.ts
Expand Up @@ -34,6 +34,7 @@ export type Feature =
| 'swcImportSource'
| 'swcEmotion'
| `swc/target/${SWC_TARGET_TRIPLE}`
| 'turbotrace'

interface FeatureUsage {
featureName: Feature
Expand Down Expand Up @@ -88,6 +89,7 @@ const BUILD_FEATURES: Array<Feature> = [
'swc/target/x86_64-unknown-linux-musl',
'swc/target/aarch64-unknown-linux-musl',
'swc/target/aarch64-pc-windows-msvc',
'turbotrace',
]

const ELIMINATED_PACKAGES = new Set<string>()
Expand Down
1 change: 1 addition & 0 deletions packages/next/telemetry/events/build.ts
Expand Up @@ -149,6 +149,7 @@ export type EventBuildFeatureUsage = {
| 'swcImportSource'
| 'swcEmotion'
| `swc/target/${SWC_TARGET_TRIPLE}`
| 'turbotrace'
| 'build-lint'
invocationCount: number
}
Expand Down

0 comments on commit 381f724

Please sign in to comment.