Closed ccaodiug closed 6 years ago
I cannot just mege it, because there are versions for angular 5 and 6.
Thanks ivanpadavan! So, what is your branching strategy to deal with new changes for both versions? if no one is in place, I suggest to proceed (for this change only) by merging it in master (supposed to be angular 6 version), then cherry pick the commit in angular 5 branch and any other branch that is required to be aligned. For future changes, it would be great to design a branching strategy and explain it inside the readme.
regards
@ccaodiug please add test for current pull request
@splincode please, let me know which kind of test you need for it.
@ivanpadavan please, could you explain me why did you reject the request? I'm trying to understand how to provide the request to solve your concerns and which test @splincode requires, this in order to provide to him and you everything you need. Even, I think to have a workspace completely free of space characters is a heavy limitation for everyone that what to use ngw and this limitation should be fix.
facing an issue when running ngw in a windows 10 environment (didn't try other OS) and having the full path of my repository that contains a folder with a space character in its name. Changing the folder name it works as expected but this is a little bit annoying. The error message is below.
Not working folder C:\Users\myuser\Documents\myfolder\GIT Repos\myrepo
Working folder path C:\Users\myuser\Documents\myfolder\GITRepos\myrepo
got a solution changing line 12 from
const executionPoint = [tsNodePath, entryPointPath].concat(ngCommandArgs).join(' ');
to
const executionPoint = '"'+[tsNodePath, entryPointPath].concat(ngCommandArgs).join('" "')+'"';