DRVDOC-1129: Clicking on editor margins should focus editor
[ProtonMail-WebClient.git] / .yarn / plugin-postinstall.js
blob11e9f0a5d69a4ff863fefb7f39c13412746dd925
1 module.exports = {
2     name: 'plugin-postinstall',
3     factory: function (require) {
4         var shell = require('@yarnpkg/shell');
5         return {
6             hooks: {
7                 afterAllInstalled: function () {
8                     shell.execute('yarn workspaces foreach --parallel --all run postinstall');
9                 },
10             },
11         };
12     },