pmcf 6.1.3 → 6.1.4

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": "pmcf",
3
- "version": "6.1.3",
3
+ "version": "6.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/base.mjs CHANGED
@@ -169,7 +169,6 @@ export class Base {
169
169
  );
170
170
  all.push(value); // TODO should not happen
171
171
  } else if (typeof value === "object") {
172
- //console.log("NO F", this.fullName, path, value);
173
172
  all.push(...Object.values(value));
174
173
  }
175
174
  }
@@ -40,10 +40,6 @@ export class openldap extends CoreService {
40
40
 
41
41
  const packageData = this.packageData;
42
42
 
43
- /*console.log(
44
- [...this.walkDirections(["this", "extends"])].map(n => n.fullName)
45
- );*/
46
-
47
43
  packageData.sources = await Array.fromAsync(
48
44
  this.templateContent(
49
45
  {
package/src/type.mjs CHANGED
@@ -42,7 +42,6 @@ export function assign(attribute, object, value) {
42
42
  if (attribute.collection) {
43
43
  const current = object[attribute.name];
44
44
 
45
- //console.log("ASSIGN", object.fullName, attribute.name, value.name);
46
45
  if (current) {
47
46
  if (typeof current.set === "function") {
48
47
  if (attribute.type.primitive) {