From 0f03ffd3eb5f4c0901ce071d92fa0d39743b9099 Mon Sep 17 00:00:00 2001 From: Vladimirs Semikins Date: Mon, 7 Feb 2022 10:38:28 +0200 Subject: [PATCH] adds @sap/cds dependency to package.json To avoid further questions (e.g. https://answers.sap.com/questions/13577720/i-push-my-capnodejsto-btp-environment-but-always-c.html) this PR will add missing `@sap/cds` dependency. --- hello/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hello/package.json b/hello/package.json index 98ecf01e..5761592d 100644 --- a/hello/package.json +++ b/hello/package.json @@ -6,6 +6,9 @@ "start": "cds serve srv/world.cds", "start:ts": "cds-ts serve srv/world.cds" }, + "dependencies": { + "@sap/cds": "^5.0.4", + }, "devDependencies": { "@types/jest": "^27.0.2", "@types/node": "^16.11.6",