We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2350577 + 241b6fb commit 12b0088Copy full SHA for 12b0088
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@posthog/wizard",
3
- "version": "0.2.11",
+ "version": "0.3.0",
4
"homepage": "https://github.com/posthog/wizard",
5
"repository": "https://github.com/posthog/wizard",
6
"description": "The PostHog wizard helps you to configure your project",
src/run.ts
@@ -89,7 +89,10 @@ async function getIntegrationForSetup(
89
const integration: Integration = await abortIfCancelled(
90
clack.select({
91
message: 'What do you want to set up?',
92
- options: [{ value: Integration.nextjs, label: 'Next.js' }],
+ options: [
93
+ { value: Integration.nextjs, label: 'Next.js' },
94
+ { value: Integration.react, label: 'React' },
95
+ ],
96
}),
97
);
98
0 commit comments