Skip to content

Commit 77e86ff

Browse files
committed
fix(ccra): Fix welcome message
1 parent b1327f7 commit 77e86ff

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

packages/cli/src/commands/setup/i18n/templates/en.json.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"Welcome to Cedar": "Welcome to Cedar",
2+
"Welcome to CedarJS": "Welcome to CedarJS",
33
"info": "This is your English translation file",
44
"see": "https://www.i18next.com/translation-function/essentials",
55
"HomePage": {

packages/cli/src/commands/setup/i18n/templates/fr.json.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"Welcome to Cedar": "Bienvenu sur Cedar",
2+
"Welcome to CedarJS": "Bienvenu sur CedarJS",
33
"info": "Ceci est votre fichier de traduction",
44
"see": "https://www.i18next.com/translation-function/essentials",
55
"HomePage": {

packages/create-cedar-app/src/create-cedar-app.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -692,9 +692,9 @@ async function createRedwoodApp() {
692692
tui.drawText(
693693
[
694694
`${RedwoodStyling.redwood('-'.repeat(66))}`,
695-
`${' '.repeat(18)}🌲⚡️ ${RedwoodStyling.header(
696-
'Welcome to Cedar!',
697-
)} ⚡️🌲`,
695+
`-- ${' '.repeat(14)}🌲🌲 ${RedwoodStyling.header(
696+
'Welcome to CedarJS!',
697+
)} 🌲🌲${' '.repeat(14)} --`,
698698
`${RedwoodStyling.redwood('-'.repeat(66))}`,
699699
].join('\n'),
700700
)
@@ -783,7 +783,7 @@ async function createRedwoodApp() {
783783
tui.drawText(
784784
[
785785
'',
786-
RedwoodStyling.success('Thanks for trying out Redwood!'),
786+
RedwoodStyling.success('Thanks for trying out CedarJS!'),
787787
'',
788788
` ⚡️ ${RedwoodStyling.redwood(
789789
'Get up and running fast with this Quick Start guide',

packages/create-cedar-app/tests/e2e.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe('create-cedar-app', () => {
6060
expect(p.exitCode).toEqual(0)
6161
expect(p.stdout).toMatchInlineSnapshot(`
6262
"------------------------------------------------------------------
63-
🌲⚡️ Welcome to Cedar! ⚡️🌲
63+
-- 🌲🌲 Welcome to CedarJS! 🌲🌲 --
6464
------------------------------------------------------------------
6565
[?25l⠋ Checking node and yarn compatibility
6666
[?25h[?25l✔ Compatibility checks passed
@@ -74,7 +74,7 @@ describe('create-cedar-app', () => {
7474
[?25l⠋ Initializing a git repo
7575
[?25h[?25l✔ Initialized a git repo with commit message "Initial commit"
7676
[?25h
77-
Thanks for trying out Redwood!
77+
Thanks for trying out CedarJS!
7878
7979
⚡️ Get up and running fast with this Quick Start guide: https://redwoodjs.com/quick-start
8080

0 commit comments

Comments
 (0)