-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
[docs] Remove release candidate warnings #8109
Changes from 1 commit
b0b955e
46f1b20
5eec81a
9d2184d
b2e486d
6c4a2c8
5f18b63
a5a84bd
55b6fda
61df2eb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'create-svelte': patch | ||
--- | ||
|
||
[feat] remove release candidate banner |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,10 +9,6 @@ import { dist } from './utils.js'; | |
// prettier-ignore | ||
const disclaimer = ` | ||
${bold(cyan('Welcome to SvelteKit!'))} | ||
|
||
${bold(red('This is release candidate software; expect bugs and missing features.'))} | ||
|
||
Problems? Open an issue on ${cyan('https://github.com/sveltejs/kit/issues')} if none exists already. | ||
`; | ||
|
||
const { version } = JSON.parse(fs.readFileSync(new URL('package.json', import.meta.url), 'utf-8')); | ||
|
@@ -180,7 +176,15 @@ async function main() { | |
console.log(` ${i++}: ${bold(cyan('npm run dev -- --open'))}`); | ||
|
||
console.log(`\nTo close the dev server, hit ${bold(cyan('Ctrl-C'))}`); | ||
console.log(`\nStuck? Visit us at ${cyan('https://svelte.dev/chat')}\n`); | ||
console.log( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this seems a bit verbose to include in the CLI. I'd probably just keep this portion how it was before There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like that it's three items (a nice number of sentences), each is short, starts with a one-word-question, and serves a different purpose. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the one I'm most hesitant about is encouraging people to file issues l. I sort of liked directing people to Discord first because then the community can help us triage a bit whether it's a usage issue or a bug that should be filed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds good, I'll remove that item. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd like the tutorial to be a bit more buttoned up before we start directing people there without caveats. For example if you follow the link here you go to a page that begins
which is a major WTF if you land there without context. Let's revert this to how it was before There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. will push that change, one sec There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FYI I also mention the tutorial on the intro docs - do you want to remove it from there, too? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i think we can link to it, but with caveats (and probably to the first page, not straight to part 2). i'm going to tweak some other word in there anyway so will do that now |
||
`\nNew? Do the tutorial at ${cyan('https://learn.svelte.dev/tutorial/introducing-sveltekit')}\n` | ||
Rich-Harris marked this conversation as resolved.
Show resolved
Hide resolved
|
||
); | ||
console.log(`\nStuck? Visit us at ${cyan('https://svelte.dev/chat')}`); | ||
console.log( | ||
`\nProblems? Open an issue on ${cyan( | ||
'https://github.com/sveltejs/kit/issues' | ||
)} if none exists already.\n` | ||
); | ||
} | ||
|
||
main(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why
try
overdo
? (might be my non-native-english me not understanding the subtle difference)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"do" reads slightly awkwardly to me. I'd probably make it something like "complete" if I wanted to make it a command. But it also feels slightly commanding to me whereas "try" is more of a recommendation than a command. It's pretty subtle and probably different people will have different views of it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 I'll adjust it