From 4735855f54506d1fb5abb9e19a84b27502b33336 Mon Sep 17 00:00:00 2001 From: Nicholas Hyatt Date: Thu, 16 Aug 2018 16:41:24 -0600 Subject: [PATCH] don't inlcude previous manifest in the new one if it is still there --- packages/ionic/src/commands/deploy/manifest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ionic/src/commands/deploy/manifest.ts b/packages/ionic/src/commands/deploy/manifest.ts index 110c2828ed..6a32e4e1bf 100644 --- a/packages/ionic/src/commands/deploy/manifest.ts +++ b/packages/ionic/src/commands/deploy/manifest.ts @@ -42,7 +42,7 @@ export class DeployManifestCommand extends Command { const items = await Promise.all(files.map(([f, stat]) => this.getFileAndSizeAndHashForFile(buildDir, f, stat))); - return items; + return items.filter(item => item.href !== 'pro-manifest.json'); } private async getFileAndSizeAndHashForFile(buildDir: string, file: string, stat: fs.Stats): Promise {