Skip to content

Commit

Permalink
[INTERNAL] ui5.yaml: Use double quotes for string values
Browse files Browse the repository at this point in the history
  • Loading branch information
flovogt committed Nov 21, 2023
1 parent 9843071 commit 6837da8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Configure your project for use with UI5 Tooling.
❯ ui5 init
Wrote ui5.yaml:
specVersion: '3.1'
specVersion: "3.1"
metadata:
name: my-app
type: application
Expand Down
4 changes: 2 additions & 2 deletions docs/updates/migrate-v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ npm install @ui5/cli@^1

### ui5.yaml

#### `specVersion: '1.0'`
#### `specVersion: "1.0"`

We have introduced the [specification version `1.0`](../pages/Configuration.md#specification-version-10).
New features will only be available for projects with specVersion `1.0` or newer.
The specVersion `0.1` will be compatible with the UI5 CLI v1.0.0, but we still recommend to adopt your projects.

```yaml
specVersion: '1.0'
specVersion: "1.0"
metadata:
name: <project-name>
type: <project-type>
Expand Down
4 changes: 2 additions & 2 deletions docs/updates/migrate-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ npm install --save-dev @ui5/cli@^2

### ui5.yaml

#### `specVersion: '2.0'`
#### `specVersion: "2.0"`

We have introduced the [specification version `2.0`](../pages/Configuration.md#specification-version-10).
New features will only be available for projects with specVersion `2.0` or newer.
Most projects defining specVersion `0.1` or `1.0` can still be used.

```yaml
specVersion: '2.0'
specVersion: "2.0"
metadata:
name: <project-name>
type: <project-type>
Expand Down
2 changes: 1 addition & 1 deletion examples/browsersync/ui5.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
specVersion: '1.0'
specVersion: "1.0"
metadata:
name: ui5-tooling-example-browsersync
type: application

0 comments on commit 6837da8

Please sign in to comment.