Skip to content

Commit 45d0422

Browse files
committed
[FIX] init: Use specVersion 3.0
Fixes: SAP/ui5-tooling#815
1 parent b3ce44e commit 45d0422

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/init/init.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function getProjectType(hasWebapp, hasSrc, hasTest) {
6969
*/
7070
async function init({cwd = "./"} = {}) {
7171
const projectConfig = {
72-
specVersion: "2.6",
72+
specVersion: "3.0",
7373
metadata: {}
7474
};
7575
let pkg;

test/lib/init/init.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ test("Init for application", async (t) => {
1818
});
1919

2020
t.deepEqual(projectConfig, {
21-
specVersion: "2.6",
21+
specVersion: "3.0",
2222
type: "application",
2323
metadata: {
2424
name: "init-application"
@@ -32,7 +32,7 @@ test("Init for library", async (t) => {
3232
});
3333

3434
t.deepEqual(projectConfig, {
35-
specVersion: "2.6",
35+
specVersion: "3.0",
3636
type: "library",
3737
metadata: {
3838
name: "init-library"

0 commit comments

Comments
 (0)