From 51ee6d167cf89be1e0ccfdba1d2c5c79f101233f Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 25 Mar 2021 01:06:10 +0100 Subject: [PATCH 1/3] added comment --- orders/db/schema.cds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orders/db/schema.cds b/orders/db/schema.cds index 60d0a2a1..0911a4c4 100644 --- a/orders/db/schema.cds +++ b/orders/db/schema.cds @@ -13,7 +13,7 @@ entity Orders_Items { up_ : Association to Orders; product : Association to Products @assert.integrity:false; // REVISIT: this is a temporary workaround for a glitch in cds-runtime amount : Integer; - title : String; + title : String; //> intentionally replicated as snapshot from product.title price : Double; } From 2c064d0200eb388d1826cfbc60e5909f82bbac2a Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 27 Mar 2021 19:35:46 +0100 Subject: [PATCH 2/3] Adhere to public recommendations --- LICENSES/Apache-2.0.txt => LICENSE.txt | 0 README.md | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename LICENSES/Apache-2.0.txt => LICENSE.txt (100%) diff --git a/LICENSES/Apache-2.0.txt b/LICENSE.txt similarity index 100% rename from LICENSES/Apache-2.0.txt rename to LICENSE.txt diff --git a/README.md b/README.md index 8972de46..16ee56f1 100644 --- a/README.md +++ b/README.md @@ -83,4 +83,4 @@ In case you've a question, find a bug, or otherwise need support, use our [commu ## License -Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, version 2.0 except as noted otherwise in the [LICENSE](LICENSES/Apache-2.0.txt) file. +Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, version 2.0 except as noted otherwise in the [LICENSE](LICENSE.txt) file. From 064ce32b8aedc95ff34c5b60942ef520b62e7c7d Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 27 Mar 2021 19:29:09 +0100 Subject: [PATCH 3/3] npm script cleanup --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 3b9affdf..d8b32c62 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "sqlite3": "^5.0.0" }, "scripts": { + "cleanup": "rm -rf node_modules && rm -rf */node_modules && rm -rf */*/node_modules", "registry": "node .registry/server.js", "bookshop": "cds watch bookshop", "fiori": "cds watch fiori",