Bundled Plugins: fix build issues with DirectInput (#23640)

* pass query error

* and the root

* not optional

* building bundled plugin

* missing file

* remove other branch

* fix prettier
This commit is contained in:
Ryan McKinley
2020-04-18 22:05:25 -07:00
committed by GitHub
parent 88ec7e097f
commit 1e03bb2895
6 changed files with 15 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ const bundleManagedPluginsRunner: TaskRunner<BundeManagedOptions> = async () =>
process.chdir(`${MANAGED_PLUGINS_PATH}/${scope}/${plugin}`);
try {
console.log(`[${scope}]: ${plugin} building...`);
await execa('yarn', ['dev']);
await execa('yarn', ['build']);
console.log(`[${scope}]: ${plugin} bundled`);
} catch (e) {
console.log(e.stdout);