From bf20b5a0f275fd50a20853c13d0fc1540f6dbc90 Mon Sep 17 00:00:00 2001 From: "Stephen Weatherford (MSFT)" Date: Mon, 3 Dec 2018 22:49:08 +0000 Subject: [PATCH] Separate webpack step so we can see errors in logs (#671) --- .azure-pipelines/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/main.yml b/.azure-pipelines/main.yml index 67fe6b30da..3d084a6c57 100644 --- a/.azure-pipelines/main.yml +++ b/.azure-pipelines/main.yml @@ -4,7 +4,7 @@ jobs: vmImage: VS2017-Win2016 steps: - template: common/build.yml - - template: common/webpack-prod.yml # This is required since we're not running publish + - template: common/webpack-prod.yml - template: common/lint.yml - template: common/test.yml @@ -13,6 +13,7 @@ jobs: vmImage: ubuntu-16.04 steps: - template: common/build.yml + - template: common/webpack-prod.yml # This will also run during vsce package, but vscep pack doesn't show STDOUT so we won't see full errors there - template: common/publish-vsix.yml # Only publish vsix from linux build since we use this to release and want to stay consistent - template: common/lint.yml - template: linux/test-linux.yml @@ -22,6 +23,6 @@ jobs: vmImage: macOS 10.13 steps: - template: common/build.yml - # - template: common/webpack-prod.yml # This is required since we're not running publish + # - template: common/webpack-prod.yml - template: common/lint.yml # - template: macOs/test.yml