We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d0e614 + a806df5 commit 1fbeeedCopy full SHA for 1fbeeed
commands/actions/publish.go
@@ -168,7 +168,7 @@ func buildFunc(cmd *cobra.Command, args []string) {
168
169
if tsconfig != nil {
170
outDir = filepath.Join(actions.Sources, *tsconfig.CompilerOptions.OutDir)
171
- if *tsconfig.CompilerOptions.RootDir != "" {
+ if tsconfig.CompilerOptions.RootDir != nil && *tsconfig.CompilerOptions.RootDir != "" {
172
sourcesDir = filepath.Join(actions.Sources, *tsconfig.CompilerOptions.RootDir)
173
}
174
mustInstallDependencies(actions.Sources)
0 commit comments