* @returns {Promise<void>} result
()
| 34 | * @returns {Promise<void>} result |
| 35 | */ |
| 36 | async function runSetupSymlinkAsync() { |
| 37 | await exec("yarn", ["install"], "Install dependencies"); |
| 38 | await exec("yarn", ["link"], "Create webpack symlink"); |
| 39 | await exec("yarn", ["link", "webpack"], "Link webpack into itself"); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * @returns {Promise<boolean>} result |