pmcf 4.9.2 → 4.9.3
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 +1 -1
- package/src/host.mjs +6 -1
package/package.json
CHANGED
package/src/host.mjs
CHANGED
|
@@ -492,7 +492,12 @@ export class Host extends ServiceOwner {
|
|
|
492
492
|
if (this.extra) {
|
|
493
493
|
packageData = {
|
|
494
494
|
dir,
|
|
495
|
-
sources: [
|
|
495
|
+
sources: [
|
|
496
|
+
new FileContentProvider({
|
|
497
|
+
dir: join(this.directory, "extra"),
|
|
498
|
+
pattern: "**/*"
|
|
499
|
+
})
|
|
500
|
+
],
|
|
496
501
|
outputs: this.outputs,
|
|
497
502
|
properties: {
|
|
498
503
|
name: `${this.typeName}-extra-${this.owner.name}-${this.name}`,
|