看一個基於 Angular 的 SAP Spartacus 項目裏 angular.json 的例子:node
Angular generation schematics are instructions for modifying a project by adding files or modifying existing files.
Angular 生成原理圖是一系列指令,用於經過添加新文件或者修改已有文件的方式來修改一個項目。webpack
Individual schematics for the default Angular CLI ng generate sub-commands are collected in the package @schematics/angular.
ng generate 子命令各自的原理圖,在 @schematics/angular 包裏維護。web
Specify the schematic name for a subcommand in the format schematic-package:schematic-name; for example, the schematic for generating a component is @schematics/angular:component.
給子命令指定原理圖的語法:schematic-package + 冒號 + schematic-name,例如 @schematics/angular:component,用於生成一個 Component.shell
Architect is the tool that the CLI uses to perform complex tasks, such as compilation and test running.
Architect 是 CLI 使用的工具,用來執行復雜任務,好比編譯代碼和運行測試。npm
Architect is a shell that runs a specified builder to perform a given task, according to a target configuration.
Architect 是一個 shell,運行一個特定的 builder,根據一個 target 配置來執行某種任務。json
Angular defines default builders for use with specific CLI commands, or with the general ng run command.
Angular 爲特定的 CLI 命令定義默認 builder.安全
The JSON schemas that define the options and defaults for each of these default builders are collected in the
@angular-devkit/build-angular
package.
每一個默認 builder 的 options 定義的 JSON schemas,定義在 @angular-devkit/build-angular 開發包裏:服務器
好比 ng serve, 執行的 builder 是 @angular-devkit/build-angular:dev-server:A development server that provides live reloading.app
A function that uses the Architect API to perform a complex process such as "build" or "test". The builder code is defined in an npm package.
Builder 是一種 function,使用 Architect API 來執行復雜的流程,好比 build 或者 test. Builder 代碼定義在 npm 包裏。ide
For example, BrowserBuilder runs a webpack build for a browser target and KarmaBuilder starts the Karma server and runs a webpack build for unit tests.
例如,BrowserBuilder 爲一個 browser target 運行一個 webpack build.
The schemas configure options for the following builders.
The architect section of angular.json contains a set of Architect targets.
angular.json 的 architect 區域包含了一系列 Architect targets.
Each target object specifies the builder for that target, which is the npm package for the tool that Architect runs.
每一個 target 都指定一個 builder,該 builder 爲該 target 服務。builder 的實現位於一個 npm package 裏。
The npm package for the build tool used to create this target. The default builder for an application (ng build myApp) is @angular-devkit/build-angular:browser, which uses the webpack package bundler.
默認使用 webpack 的 package bundler 來完成 ng build.
Note that a different builder is used for building a library (ng build myLib).
The architect/extract-i18n section configures defaults for options of the ng extract-i18n command, which extracts marked message strings from source code and outputs translation files.
生成可供翻譯的 translation files.
The architect/server section configures defaults for creating a Universal app with server-side rendering, using the ng run <project>:server command.
生成支持服務器端渲染的 SSR 應用。
The architect/app-shell section configures defaults for creating an app shell for a progressive web app (PWA), using the ng run <project>:app-shell command.
建立一個用於 PWA 應用的 app shell.
Each build target configuration can include an assets array that lists files or folders you want to copy as-is when building your project. By default, the src/assets/ folder and src/favicon.ico are copied over.
靜態資源文件。
因爲安全考慮,CLI 絕對不會在項目 output path 以外寫入文件。
能夠用 glob 的這個功能,從項目文件夾以外的位置拷貝文件到 outdir 去。
例如:
"assets": [ { "glob": "**/*", "input": "./node_modules/some-package/images", "output": "/some-package/" } ]
效果:
The contents of node_modules/some-package/images/ will be available in dist/some-package/.
Default size-budget type and threshholds for all or parts of your app. You can configure the builder to report a warning or an error when the output reaches or exceeds a threshold size.
例子:
更多Jerry的原創文章,盡在:"汪子熙":