Phalgun Vaddepalli

Results 16 comments of Phalgun Vaddepalli

How do I build Angular source code? When I run `npm install` I get the below error: `PS C:\code\angular> npm install npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to...

> @phalgunv The angular project uses yarn instead of npm. So just install yarn with "_sudo npm install --global yarn_" and then install the packages with yarn "**yarn install**". I...

Thanks @dylhunn. I was stuck with for quite a long time due to build [issues](https://github.com/angular/angular/issues/46771) on Windows I have now switched to Ubuntu(via WSL). @GrizzlyEnglish, I was probably only halfway...

I have added steps to reproduce the issue. I have run the below command on a Windows 10 machine using git-bash. 1. Clone, install and generate local build of angular-cli...

I ran the `yarn link` command from the same directory containing angular source code. ``` cd /c/code/angular $ yarn ng-dev misc build-and-link ${EXAMPLE_ANGULAR_PROJECT_REPO} ```

I am assuming that I only need to start the dev server using the command provided, i.e. re-run step 12. I see a different error now from node.js. The result...

I get the same error with `set BAZEL_TARGET="1" && node --preserve-symlinks "node_modules/.bin/ng" s`: `C:\code\github\test>set BAZEL_TARGET="1" && node --preserve-symlinks "node_modules/.bin/ng" s C:\code\github\test\node_modules\.bin\ng:2 basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") ^^^^^^^ SyntaxError:...

I have pulled the latest commits from angular repo into my forked repo. The command to build the source code has been updated after I posted raised this issue. The...