Skip to content
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

[INTERNAL] specVersion 3.2 docs #902

Merged
merged 6 commits into from
Dec 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/pages/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ A list of bundle definitions. A `bundleDefinition` contains of the following opt
- `name`: The module bundle name
- `defaultFileTypes`: List of default file types which should be included in the bundle. Defaults to: `.js`, `.control.xml`, `.fragment.html`, `.fragment.json`, `.fragment.xml`, `.view.html`, `.view.json` and `.view.xml`
- `sections`: A list of module bundle definition sections. Each section specifies an embedding technology (see [API-Reference](https://sap.github.io/ui5-tooling/v3/api/module-@ui5_builder_processors_bundlers_moduleBundler.html#~ModuleBundleDefinition)) and lists the resources that should be in- or excluded from the section.
- `mode`: The embedding technology (e.g. provided, raw, preload)
- `mode`: The embedding technology (e.g. provided, raw, preload, depCache)
d3xter666 marked this conversation as resolved.
Show resolved Hide resolved
- `filters`: List of modules declared as glob patterns (resource name patterns) that are in- or excluded. Similarly to the use of a single `*` or double `**` asterisk, a pattern ending with a slash `/` denotes an arbitrary number of characters or folder names. Excludes have to be marked with a leading exclamation mark `!`. The order of filters is relevant; a later inclusion overrides an earlier exclusion, and vice versa.
- `resolve`: Setting resolve to `true` will also include all (transitive) dependencies of the files
- `resolveConditional`: Whether conditional dependencies of modules should be resolved and added to the module set for this section. By default set to `false`
Expand Down Expand Up @@ -737,6 +737,7 @@ Unless otherwise noted in the table below, UI5 Tooling modules are backward comp

Version | UI5 CLI Release
--- | ---
**3.2** | v3.8.0+
**3.1** | v3.5.0+
**3.0** | v3.0.0+
**2.6** | v2.14.0+
Expand All @@ -750,6 +751,12 @@ Version | UI5 CLI Release
**1.0** | v1.0.0+
**0.1** | v0.0.1+

### Specification Version 3.2

**Features:**

- Adds a new bundling mode in sections for providing a dependencies cache: [`builder.bundles.bundleDefinition.sections.mode=depCache`](#properties) configuration for projects of type `module`
d3xter666 marked this conversation as resolved.
Show resolved Hide resolved
d3xter666 marked this conversation as resolved.
Show resolved Hide resolved

d3xter666 marked this conversation as resolved.
Show resolved Hide resolved
### Specification Version 3.1

**Features:**
Expand Down
Loading