Skip to content

Commit

Permalink
[INTERNAL] Init ui5.yaml with specVersion: 3.2 (#667)
Browse files Browse the repository at this point in the history
Initialize ui5.yaml with the latest specVersion = 3.2
  • Loading branch information
d3xter666 authored Dec 12, 2023
1 parent 388f7e3 commit 6c1390d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/init/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function getProjectType(hasWebapp, hasSrc, hasTest) {
*/
async function init({cwd = "./"} = {}) {
const projectConfig = {
specVersion: "3.1",
specVersion: "3.2",
metadata: {}
};
let pkg;
Expand Down
4 changes: 2 additions & 2 deletions test/lib/init/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test("Init for application", async (t) => {
});

t.deepEqual(projectConfig, {
specVersion: "3.1",
specVersion: "3.2",
type: "application",
metadata: {
name: "init-application"
Expand All @@ -32,7 +32,7 @@ test("Init for library", async (t) => {
});

t.deepEqual(projectConfig, {
specVersion: "3.1",
specVersion: "3.2",
type: "library",
metadata: {
name: "init-library"
Expand Down

0 comments on commit 6c1390d

Please sign in to comment.