Skip to content

Commit 310c43f

Browse files
authored
chore: sentence casify (#38)
1 parent 2f9b793 commit 310c43f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
> have any feedback, please drop an email to **joshua** [at] **posthog** [dot]
77
> **com**.
88
9-
<h1>PostHog Wizard ✨</h1>
10-
<h4>The PostHog Wizard helps you quickly add PostHog to your project using AI.</h4>
9+
<h1>PostHog wizard ✨</h1>
10+
<h4>The PostHog wizard helps you quickly add PostHog to your project using AI.</h4>
1111

1212
# Usage
1313

bin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const NODE_VERSION_RANGE = '>=18.20.0';
1111
// has the problematic imports.
1212
if (!satisfies(process.version, NODE_VERSION_RANGE)) {
1313
red(
14-
`PostHog Wizard requires Node.js ${NODE_VERSION_RANGE}. You are using Node.js ${process.version}. Please upgrade your Node.js version.`,
14+
`PostHog wizard requires Node.js ${NODE_VERSION_RANGE}. You are using Node.js ${process.version}. Please upgrade your Node.js version.`,
1515
);
1616
process.exit(1);
1717
}

e2e-tests/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# End-to-end Tests for PostHog Wizard
1+
# End-to-end tests for PostHog wizard
22

33
## Structure
44

@@ -33,7 +33,7 @@ tests/
3333

3434
#### `WizardTestEnv`
3535

36-
`WizardTestEnv` is a class that can be used to run the PostHog Wizard in a test environment. It provides methods to run the wizard with specific arguments and stdio.
36+
`WizardTestEnv` is a class that can be used to run the PostHog wizard in a test environment. It provides methods to run the wizard with specific arguments and stdio.
3737

3838
## Running Tests Locally
3939

@@ -49,4 +49,4 @@ To run a specific test application
4949

5050
## Writing Tests
5151

52-
Each test file should contain a single test suite that tests the PostHog Wizard for a specific framework. The test suite should contain a `beforeAll` and `afterAll` function that starts and stops the test application respectively.
52+
Each test file should contain a single test suite that tests the PostHog wizard for a specific framework. The test suite should contain a `beforeAll` and `afterAll` function that starts and stops the test application respectively.

src/utils/clack-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ export async function confirmContinueIfPackageVersionNotSupported({
237237

238238
clack.note(
239239
note ??
240-
`Please upgrade to ${acceptableVersions} if you wish to use the PostHog Wizard.`,
240+
`Please upgrade to ${acceptableVersions} if you wish to use the PostHog wizard.`,
241241
);
242242
const continueWithUnsupportedVersion = await abortIfCancelled(
243243
clack.confirm({
@@ -347,7 +347,7 @@ export async function installPackage({
347347
'Encountered the following error during installation:',
348348
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
349349
)}\n\n${e}\n\n${chalk.dim(
350-
`The wizard has created a \`posthog-wizard-installation-error-*.log\` file. If you think this issue is caused by the PostHog Wizard, create an issue on GitHub and include the log file's content:\n${ISSUES_URL}`,
350+
`The wizard has created a \`posthog-wizard-installation-error-*.log\` file. If you think this issue is caused by the PostHog wizard, create an issue on GitHub and include the log file's content:\n${ISSUES_URL}`,
351351
)}`,
352352
);
353353
await abort();

0 commit comments

Comments
 (0)