@cap-js-community/common 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cap-js-community/common",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "CAP Node.js Community Common",
5
5
  "homepage": "https://cap.cloud.sap/",
6
6
  "engines": {
@@ -312,7 +312,7 @@ function releasedEntityCheck(csnBuild, csnProd, whitelist, options) {
312
312
  const messages = [];
313
313
  visitPersistenceEntities(csnProd, (definitionProd) => {
314
314
  let lookupName = definitionProd.name;
315
- if (lookupName.startsWith("cds.xt.") && !this.options.checkMtx) {
315
+ if (lookupName.startsWith("cds.xt.") && !options.checkMtx) {
316
316
  return;
317
317
  }
318
318
  const definitionBuild = csnBuild.definitions[lookupName];