|
1 |
| -# The Angular CLI |
| 1 | +# Angular CLI |
2 | 2 |
|
3 |
| -The Angular CLI is a command-line interface tool which allows you to scaffold, develop, test, deploy, and maintain Angular applications directly from a command shell. |
| 3 | +Angular CLIは、コマンドシェルから直接Angularアプリケーションをスキャフォールド、開発、テスト、デプロイ、保守できるコマンドラインインターフェースツールです。 |
4 | 4 |
|
5 |
| -Angular CLI is published on npm as the `@angular/cli` package and includes a binary named `ng`. Commands invoking `ng` are using the Angular CLI. |
| 5 | +Angular CLIは、npmに`@angular/cli`パッケージとして公開されており、`ng`という名前のバイナリを含んでいます。`ng`を呼び出すコマンドはAngular CLIを使用しています。 |
6 | 6 |
|
7 |
| -<docs-callout title="Try Angular without local setup"> |
| 7 | +<docs-callout title="ローカルセットアップなしでAngularを試す"> |
8 | 8 |
|
9 |
| -If you are new to Angular, you might want to start with [Try it now!](tutorials/learn-angular), which introduces the essentials of Angular in the context of a ready-made basic online store app for you to examine and modify. |
10 |
| -This standalone tutorial takes advantage of the interactive [StackBlitz](https://stackblitz.com) environment for online development. |
11 |
| -You don't need to set up your local environment until you're ready. |
| 9 | +Angularを初めて使用する場合は、[今すぐ試す!](tutorials/learn-angular)から始めることをお勧めします。これは、すぐに使える基本的なオンラインストアアプリケーションのコンテキストでAngularの要点を紹介し、確認および変更できます。 |
| 10 | +このスタンドアロンチュートリアルは、オンライン開発のためのインタラクティブな[StackBlitz](https://stackblitz.com)環境を利用しています。 |
| 11 | +準備が整うまで、ローカル環境をセットアップする必要はありません。 |
12 | 12 |
|
13 | 13 | </docs-callout>
|
14 | 14 |
|
15 | 15 | <docs-card-container>
|
16 |
| - <docs-card title="Getting Started" link="Get Started" href="tools/cli/setup-local"> |
17 |
| - Install Angular CLI to create and build your first app. |
| 16 | + <docs-card title="はじめに" link="開始する" href="tools/cli/setup-local"> |
| 17 | + Angular CLIをインストールして、最初のアプリを作成およびビルドします。 |
18 | 18 | </docs-card>
|
19 |
| - <docs-card title="Command Reference" link="Learn More" href="cli"> |
20 |
| - Discover CLI commands to make you more productive with Angular. |
| 19 | + <docs-card title="コマンドリファレンス" link="詳細を見る" href="cli"> |
| 20 | + Angularでより生産性を高めるCLIコマンドを発見します。 |
21 | 21 | </docs-card>
|
22 |
| - <docs-card title="Schematics" link="Learn More" href="tools/cli/schematics"> |
23 |
| - Create and run schematics to generate and modify source files in your application automatically. |
| 22 | + <docs-card title="Schematics" link="詳細を見る" href="tools/cli/schematics"> |
| 23 | + Schematicsを作成および実行して、アプリケーションのソースファイルを自動的に生成および変更します。 |
24 | 24 | </docs-card>
|
25 |
| - <docs-card title="Builders" link="Learn More" href="tools/cli/cli-builder"> |
26 |
| - Create and run builders to perform complex transformations from your source code to generated build outputs. |
| 25 | + <docs-card title="Builders" link="詳細を見る" href="tools/cli/cli-builder"> |
| 26 | + Buildersを作成および実行して、ソースコードから生成されたビルド出力への複雑な変換を実行します。 |
27 | 27 | </docs-card>
|
28 | 28 | </docs-card-container>
|
29 | 29 |
|
30 |
| -## CLI command-language syntax |
| 30 | +## CLIコマンド言語構文 {#cli-command-language-syntax} |
31 | 31 |
|
32 |
| -Angular CLI roughly follows Unix/POSIX conventions for option syntax. |
| 32 | +Angular CLIは、オプション構文に関してUnix/POSIXの慣例にほぼ従っています。 |
33 | 33 |
|
34 |
| -### Boolean options |
| 34 | +### 真偽値オプション {#boolean-options} |
35 | 35 |
|
36 |
| -Boolean options have two forms: `--this-option` sets the flag to `true`, `--no-this-option` sets it to `false`. |
37 |
| -You can also use `--this-option=false` or `--this-option=true`. |
38 |
| -If neither option is supplied, the flag remains in its default state, as listed in the reference documentation. |
| 36 | +真偽値オプションには2つの形式があります。`--this-option`はフラグを`true`に設定し、`--no-this-option`は`false`に設定します。 |
| 37 | +`--this-option=false`または`--this-option=true`を使用できます。 |
| 38 | +どちらのオプションも指定されていない場合、フラグは参照ドキュメントに記載されているデフォルトの状態のままになります。 |
39 | 39 |
|
40 |
| -### Array options |
| 40 | +### 配列オプション {#array-options} |
41 | 41 |
|
42 |
| -Array options can be provided in two forms: `--option value1 value2` or `--option value1 --option value2`. |
| 42 | +配列オプションは2つの形式で指定できます。`--option value1 value2`または`--option value1 --option value2`。 |
43 | 43 |
|
44 |
| -### Key/value options |
| 44 | +### キー/値オプション {#key-value-options} |
45 | 45 |
|
46 |
| -Some options like `--define` expect an array of `key=value` pairs as their values. |
47 |
| -Just like array options, key/value options can be provided in two forms: |
48 |
| -`--define 'KEY_1="value1"' KEY_2=true` or `--define 'KEY_1="value1"' --define KEY_2=true`. |
| 46 | +`--define`のような一部のオプションは、値として`key=value`ペアの配列を期待します。 |
| 47 | +配列オプションと同様に、キー/値オプションは2つの形式で指定できます。 |
| 48 | +`--define 'KEY_1="value1"' KEY_2=true`または`--define 'KEY_1="value1"' --define KEY_2=true`。 |
49 | 49 |
|
50 |
| -### Relative paths |
| 50 | +### 相対パス {#relative-paths} |
51 | 51 |
|
52 |
| -Options that specify files can be given as absolute paths, or as paths relative to the current working directory, which is generally either the workspace or project root. |
| 52 | +ファイルを指定するオプションは、絶対パスとして、または現在の作業ディレクトリ(通常はワークスペースまたはプロジェクトのルート)に対する相対パスとして指定できます。 |
0 commit comments