Skip to content

Commit 74987a2

Browse files
Merge pull request #3881 from NativeScript/vladimirov/change-discourse-so
replacing forum references with stack overflow
2 parents a09d629 + 75160d9 commit 74987a2

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ questions regarding the behavior/reproduction for more than 20 days "dead". All
88

99
## Please, provide the details below:
1010

11-
### Did you verify this is a real problem by searching the [NativeScript Forum](http://forum.nativescript.org) and the [other open issues in this repo](https://github.com/NativeScript/nativescript/issues)?
11+
### Did you verify this is a real problem by searching [Stack Overflow](https://stackoverflow.com/questions/tagged/nativescript) and the [other open issues in this repo](https://github.com/NativeScript/nativescript/issues)?
1212

1313
### Tell us about the problem
1414
Please, ensure your title is less than 63 characters long and starts with a capital

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ To use the locally built CLI instead `tns` you can call `PATH_TO_CLI_FOLDER/bin/
472472
Get Help
473473
===
474474

475-
Please, use [github issues](https://github.com/NativeScript/nativescript-cli/issues) strictly for [reporting bugs](CONTRIBUTING.md#report-an-issue) or [requesting features](CONTRIBUTING.md#request-a-feature). For general NativeScript questions and support, check out the [NativeScript community forum](https://discourse.nativescript.org/) or ask our experts in [NativeScript community Slack channel](http://developer.telerik.com/wp-login.php?action=slack-invitation).
475+
Please, use [github issues](https://github.com/NativeScript/nativescript-cli/issues) strictly for [reporting bugs](CONTRIBUTING.md#report-an-issue) or [requesting features](CONTRIBUTING.md#request-a-feature). For general NativeScript questions and support, check out [Stack Overflow](https://stackoverflow.com/questions/tagged/nativescript) or ask our experts in the [NativeScript community Slack channel](http://developer.telerik.com/wp-login.php?action=slack-invitation).
476476

477477
[Back to Top][1]
478478

lib/commands/post-install.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ export class PostInstallCliCommand extends PostInstallCommand {
2020
}
2121

2222
public async postCommandAction(args: string[]): Promise<void> {
23-
this.$logger.info("You have successfully installed NativeScript CLI.");
24-
this.$logger.info("In order to create a new project, you can use:".green);
23+
this.$logger.info("You have successfully installed the NativeScript CLI!");
24+
this.$logger.info("To create a new project, you use:".green);
2525
this.$logger.printMarkdown("`tns create <app name>`");
26-
this.$logger.info("To build your project locally you can use:".green);
26+
this.$logger.info("To build your project locally you use:".green);
2727
this.$logger.printMarkdown("`tns build <platform>`");
2828
this.$logger.printMarkdown("NOTE: Local builds require additional setup of your environment. You can find more information here: `https://docs.nativescript.org/start/quick-setup`");
2929

@@ -34,10 +34,10 @@ export class PostInstallCliCommand extends PostInstallCommand {
3434
this.$logger.printMarkdown("NOTE: Cloud builds require Telerik account. You can find more information here: `https://docs.nativescript.org/sidekick/intro/requirements`");
3535

3636
this.$logger.info("");
37-
this.$logger.printMarkdown("In case you want to experiment quickly with NativeScript, you can try the Playground: `https://play.nativescript.org`");
37+
this.$logger.printMarkdown("If you want to experiment with NativeScript in your browser, try the Playground: `https://play.nativescript.org`");
3838

3939
this.$logger.info("");
40-
this.$logger.printMarkdown("In case you have any questions, you can check our forum: `https://forum.nativescript.org` and our public Slack channel: `https://nativescriptcommunity.slack.com/`");
40+
this.$logger.printMarkdown("If you have any questions, check Stack Overflow: `https://stackoverflow.com/questions/tagged/nativescript` and our public Slack channel: `https://nativescriptcommunity.slack.com/`");
4141
}
4242
}
4343

lib/services/platform-environment-requirements.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class PlatformEnvironmentRequirements implements IPlatformEnvironmentRequ
1818
public static MANUALLY_SETUP_OPTION_NAME = "Skip Step and Configure Manually";
1919
private static BOTH_CLOUD_SETUP_AND_LOCAL_SETUP_OPTION_NAME = "Configure for Both Local and Cloud Builds";
2020
private static CHOOSE_OPTIONS_MESSAGE = "To continue, choose one of the following options: ";
21-
private static NOT_CONFIGURED_ENV_AFTER_SETUP_SCRIPT_MESSAGE = `The setup script was not able to configure your environment for local builds. To execute local builds, you have to set up your environment manually. In case you have any questions, you can check our forum: 'http://forum.nativescript.org' and our public Slack channel: 'https://nativescriptcommunity.slack.com/'.`;
21+
private static NOT_CONFIGURED_ENV_AFTER_SETUP_SCRIPT_MESSAGE = `The setup script was not able to configure your environment for local builds. To execute local builds, you have to set up your environment manually. Please consult our setup instructions here 'https://docs.nativescript.org/start/quick-setup'.`;
2222
private static MISSING_LOCAL_SETUP_MESSAGE = "Your environment is not configured properly and you will not be able to execute local builds.";
2323
private static MISSING_LOCAL_AND_CLOUD_SETUP_MESSAGE = `You are missing the ${NATIVESCRIPT_CLOUD_EXTENSION_NAME} extension and you will not be able to execute cloud builds. ${PlatformEnvironmentRequirements.MISSING_LOCAL_SETUP_MESSAGE} ${PlatformEnvironmentRequirements.CHOOSE_OPTIONS_MESSAGE} `;
2424
private static MISSING_LOCAL_BUT_CLOUD_SETUP_MESSAGE = `You have ${NATIVESCRIPT_CLOUD_EXTENSION_NAME} extension installed, so you can execute cloud builds, but ${_.lowerFirst(PlatformEnvironmentRequirements.MISSING_LOCAL_SETUP_MESSAGE)}`;
@@ -156,7 +156,7 @@ export class PlatformEnvironmentRequirements implements IPlatformEnvironmentRequ
156156
}
157157

158158
private processManuallySetup(platform?: string): void {
159-
this.fail(`To be able to ${platform ? `build for ${platform}` : 'build'}, verify that your environment is configured according to the system requirements described at ${this.$staticConfig.SYS_REQUIREMENTS_LINK}. In case you have any questions, you can check our forum: 'http://forum.nativescript.org' and our public Slack channel: 'https://nativescriptcommunity.slack.com/'.`);
159+
this.fail(`To be able to ${platform ? `build for ${platform}` : 'build'}, verify that your environment is configured according to the system requirements described at ${this.$staticConfig.SYS_REQUIREMENTS_LINK}. If you have any questions, check Stack Overflow: 'https://stackoverflow.com/questions/tagged/nativescript' and our public Slack channel: 'https://nativescriptcommunity.slack.com/'`);
160160
}
161161

162162
private async processBothCloudBuildsAndSetupScript(): Promise<void> {

0 commit comments

Comments
 (0)