Skip to content

Commit 39cf01f

Browse files
committed
fix: add package.json to build output, needed because addon dummy apps need a package.json to avoid picking up to addons, and it doesnt hurt elsewhere
1 parent daf72bb commit 39cf01f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/builder.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ export default class Builder {
9292
/**
9393
* A list of files that should be copied as-is into the final build
9494
*/
95-
public packageFiles: string[] = [];
95+
public packageFiles: string[] = [
96+
'package.json'
97+
];
9698

9799
/**
98100
* A list of directories that should be copied as-is into the final build

0 commit comments

Comments
 (0)