pmcf 1.59.9 → 1.59.11

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": "1.59.9",
3
+ "version": "1.59.11",
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": "^17.2.4",
41
+ "npm-pkgbuild": "^17.2.5",
42
42
  "pacc": "^3.3.0",
43
43
  "pkg-dir": "^8.0.0"
44
44
  },
package/src/base.mjs CHANGED
@@ -343,8 +343,8 @@ export class Base {
343
343
 
344
344
  async *preparePackages(stagingDir) {
345
345
  yield {
346
- outputs: this.outputs,
347
346
  sources: [],
347
+ outputs: this.outputs,
348
348
  properties: {
349
349
  description: `${this.typeName} definitions for ${this.fullName}`,
350
350
  access: "private"
package/types/base.d.mts CHANGED
@@ -72,8 +72,8 @@ export class Base {
72
72
  get derivedPackaging(): any;
73
73
  get outputs(): Set<typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").DOCKER>;
74
74
  preparePackages(stagingDir: any): AsyncGenerator<{
75
- outputs: Set<typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").DOCKER>;
76
75
  sources: any[];
76
+ outputs: Set<typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").DOCKER>;
77
77
  properties: {
78
78
  description: string;
79
79
  access: string;