We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
yarn install
1 parent 9b83cb3 commit b69ea7eCopy full SHA for b69ea7e
.gitignore
@@ -10,3 +10,4 @@ metals.sbt
10
11
/typescript/**/node_modules
12
/typescript/**/build
13
+/typescript/.yarn_installed
project/OpenApiTypescriptPlugin.scala
@@ -64,7 +64,9 @@ object OpenApiTypescriptPlugin extends AutoPlugin {
64
}
65
66
def generateOpenapiTypescriptFile(appName: String): Unit = {
67
- runCommand("yarn --cwd typescript/types-backend/ install")
+ synchronized {
68
+ runCommand("yarn --cwd typescript/types-backend/ install")
69
+ }
70
runCommand(s"yarn --cwd typescript/types-backend/ generate-typescript $appName")
71
72
0 commit comments