pmcf 1.53.0 → 1.53.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/bin/pmcf-package CHANGED
@@ -29,7 +29,7 @@ const sources = [options.output].map(base =>
29
29
 
30
30
  const output = new ARCH(properties);
31
31
 
32
- const fileName = await output.create(sources, [], {}, publishingDetails, {
32
+ const fileName = await output.create(sources, [], publishingDetails, {
33
33
  destination: "dist",
34
34
  verbose: true
35
35
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "1.53.0",
3
+ "version": "1.53.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,7 +38,7 @@
38
38
  "lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target es2024 --lib esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
39
39
  },
40
40
  "dependencies": {
41
- "npm-pkgbuild": "^16.0.1",
41
+ "npm-pkgbuild": "^16.1.1",
42
42
  "pacc": "^3.3.0"
43
43
  },
44
44
  "devDependencies": {
package/src/base.mjs CHANGED
@@ -292,7 +292,8 @@ export class Base {
292
292
  return {
293
293
  properties: {
294
294
  name: this.packageName,
295
- description: `${this.constructor.typeDefinition.name} definitions for ${this.fullName}`
295
+ description: `${this.constructor.typeDefinition.name} definitions for ${this.fullName}`,
296
+ access: "private"
296
297
  }
297
298
  };
298
299
  }
package/types/base.d.mts CHANGED
@@ -64,6 +64,7 @@ export class Base {
64
64
  properties: {
65
65
  name: string;
66
66
  description: string;
67
+ access: string;
67
68
  };
68
69
  }>;
69
70
  expand(object: any): any;