Skip to content

Commit d03057d

Browse files
nphyattimhoffd
authored andcommitted
fix(deploy): exclude any existing pro-manifest.json files (#3527)
1 parent 79defc5 commit d03057d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ionic/src/commands/deploy/manifest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class DeployManifestCommand extends Command {
4242

4343
const items = await Promise.all(files.map(([f, stat]) => this.getFileAndSizeAndHashForFile(buildDir, f, stat)));
4444

45-
return items;
45+
return items.filter(item => item.href !== 'pro-manifest.json');
4646
}
4747

4848
private async getFileAndSizeAndHashForFile(buildDir: string, file: string, stat: fs.Stats): Promise<DeployManifestItem> {

0 commit comments

Comments
 (0)