Skip to content

Commit b0acd67

Browse files
NathanWalkerrigor789
authored andcommitted
feat: add 'ns' alias
1 parent 716d175 commit b0acd67

11 files changed

+15
-11
lines changed

PublicAPI.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Public API
44
This document describes all methods that can be invoked when NativeScript CLI is required as library, i.e.
55

66
```JavaScript
7-
const tns = require("nativescript");
7+
const ns = require("nativescript");
88
```
99

1010
# Contents

bin/ns

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env node
2+
3+
require("./tns");

lib/commands/create-project.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ can skip this prompt next time using the --template option, or the --ng, --react
240240
const { projectDir } = this.createdProjectData;
241241
const relativePath = path.relative(process.cwd(), projectDir);
242242
this.$logger.printMarkdown(`Now you can navigate to your project with \`$ cd ${relativePath}\``);
243-
this.$logger.printMarkdown(`After that you can preview it on device by executing \`$ tns preview\``);
243+
this.$logger.printMarkdown(`After that you can preview it on device by executing \`$ ns preview\``);
244244
}
245245
}
246246

lib/commands/list-platforms.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class ListPlatformsCommand implements ICommand {
2424
} else {
2525
const formattedPlatformsList = helpers.formatListOfNames(this.$platformCommandHelper.getAvailablePlatforms(this.$projectData), "and");
2626
this.$logger.info("Available platforms for this OS: ", formattedPlatformsList);
27-
this.$logger.info("No installed platforms found. Use $ tns platform add");
27+
this.$logger.info("No installed platforms found. Use $ ns platform add");
2828
}
2929
}
3030
}

lib/commands/migrate.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class MigrateCommand implements ICommand {
1616
});
1717

1818
if (!shouldMigrateResult) {
19-
this.$logger.printMarkdown('__Project is compatible with NativeScript "v6.0.0". To get the latest NativeScript packages execute "tns update".__');
19+
this.$logger.printMarkdown('__Project is compatible with NativeScript "v6.0.0". To get the latest NativeScript packages execute "ns update".__');
2020
return;
2121
}
2222

lib/commands/post-install.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class PostInstallCliCommand implements ICommand {
4242
this.$logger.info("You have successfully installed the NativeScript CLI!".green.bold);
4343
this.$logger.info("");
4444
this.$logger.info("Your next step is to create a new project:");
45-
this.$logger.info("tns create".green.bold);
45+
this.$logger.info("ns create".green.bold);
4646

4747
this.$logger.info("");
4848
this.$logger.printMarkdown("New to NativeScript?".bold + " Try the tutorials in NativeScript Playground: `https://play.nativescript.org`");

lib/commands/test-init.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class TestInitCommand implements ICommand {
115115
this.$logger.info(`\nPlace your test files under ${relativeTestsDir}`.yellow);
116116
}
117117

118-
this.$logger.info('Run your tests using the "$ tns test <platform>" command.'.yellow);
118+
this.$logger.info('Run your tests using the "$ ns test <platform>" command.'.yellow);
119119
}
120120
}
121121

lib/commands/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ abstract class TestCommandBase {
8383
const canStartKarmaServer = await this.$testExecutionService.canStartKarmaServer(this.$projectData);
8484
if (!canStartKarmaServer) {
8585
this.$errors.fail({
86-
formatStr: "Error: In order to run unit tests, your project must already be configured by running $ tns test init.",
86+
formatStr: "Error: In order to run unit tests, your project must already be configured by running $ ns test init.",
8787
errorCode: ErrorCodes.TESTS_INIT_REQUIRED
8888
});
8989
}

lib/commands/update.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export class UpdateCommand implements ICommand {
22
public allowedParameters: ICommandParameter[] = [];
3-
public static readonly SHOULD_MIGRATE_PROJECT_MESSAGE = 'This project is not compatible with the current NativeScript version and cannot be updated. Use "tns migrate" to make your project compatible.';
3+
public static readonly SHOULD_MIGRATE_PROJECT_MESSAGE = 'This project is not compatible with the current NativeScript version and cannot be updated. Use "ns migrate" to make your project compatible.';
44
public static readonly PROJECT_UP_TO_DATE_MESSAGE = 'This project is up to date.';
55

66
constructor(

lib/common/commands/post-install.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export class PostInstallCommand implements ICommand {
66
public allowedParameters: ICommandParameter[] = [];
77

88
public async execute(args: string[]): Promise<void> {
9-
this.$errors.fail("This command is deprecated. Use `tns dev-post-install-cli` instead");
9+
this.$errors.fail("This command is deprecated. Use `ns dev-post-install-cli` instead");
1010
}
1111
}
1212
$injector.registerCommand("dev-post-install", PostInstallCommand);

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"name": "nativescript",
33
"preferGlobal": true,
4-
"version": "6.8.1-rc.0",
4+
"version": "6.8.1-rc.1",
55
"author": "NativeScript <[email protected]>",
66
"description": "Command-line interface for building NativeScript projects",
77
"bin": {
88
"tns": "./bin/tns",
99
"nativescript": "./bin/tns",
10-
"nsc": "./bin/tns"
10+
"nsc": "./bin/tns",
11+
"ns": "./bin/tns"
1112
},
1213
"main": "./lib/nativescript-cli-lib.js",
1314
"scripts": {

0 commit comments

Comments
 (0)