Closed theRoughCode closed 4 years ago
Currently, .WithKernelSpecResources fails silently when there is a key that represents a nested file within a subdirectory. For example:
.WithKernelSpecResources
.WithKernelSpecResources<Program>( new Dictionary<string, string> { ["folder/file.js"] = "echo-kernel.res.folder.file.js" } )
This PR aims to fix this by creating the directory if it doesn't exist.
Currently,
.WithKernelSpecResources
fails silently when there is a key that represents a nested file within a subdirectory. For example:This PR aims to fix this by creating the directory if it doesn't exist.