From a0fc3ba8776d3507b0babf393554847c0b9f1bf0 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Wed, 11 Sep 2019 11:19:31 -0700 Subject: [PATCH] Relink automation dep before compile Just always relink to avoid issues with the build cache not restoring links. Fixes #80729 --- test/smoke/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/test/smoke/package.json b/test/smoke/package.json index b9d8daa47e1..647d5e70b2b 100644 --- a/test/smoke/package.json +++ b/test/smoke/package.json @@ -4,6 +4,7 @@ "main": "./src/main.js", "scripts": { "postinstall": "npm run compile", + "precompile": "yarn add vscode-automation@link:../automation", "compile": "yarn --cwd ../automation compile && tsc", "watch": "concurrently \"yarn --cwd ../automation watch --preserveWatchOutput\" \"tsc --watch --preserveWatchOutput\"", "mocha": "mocha"