-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows CI matrix #752
Windows CI matrix #752
Conversation
@@ -1271,8 +1271,9 @@ export class AppBuilder<TreeNames> { | |||
} | |||
|
|||
let runtime = join(packageName, name).replace(this.resolvableExtensionsPattern, ''); | |||
if (renamedModules && renamedModules[runtime]) { | |||
runtime = renamedModules[runtime]; | |||
let runtimeRenameLookup = runtime.split('\\').join('/'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
runtime will look like: ember-source\ember\index
because of the join.
renamedModules will contain items like:
{
...
'ember-source/ember/index': 'ember/index'
...
which fails to do the lookup. This converts the lookup to be in the expected format. I didn't change the meta info format as I'm not sure the full ramifications of that but a longer term solution would be to look into that.
Contains the changes to get #739 passing under Windows.