Mark Goho

Results 19 comments of Mark Goho

I don't know if this picture is accurate, but what it sounds like is that you were in a directory with a node_modules folder that contained v7 of the Angular...

If I use a complete path, e.g. `./node_modules/.bin/ngu-sw-manifest --module c:/users/nella/documents/github/io17/src/app/app.module.ts` I get the following error ```bash C:\Users\Nella\Documents\GitHub\io17\node_modules\@angular\compiler\bundles\compiler.umd.js:1550 var /** @type {?} */ error = Error(msg); ^ Error: Unexpected value 'AppModule'...

Here's what I get from that command ```bash +-- UNMET PEER DEPENDENCY @angular/[email protected] +-- @angular/[email protected] +-- UNMET PEER DEPENDENCY @angular/[email protected] +-- UNMET PEER DEPENDENCY @angular/[email protected] +-- UNMET PEER DEPENDENCY @angular/[email protected]...

Okay, I fixed the unmet peer dependencies by changing your `package.json` to use tildes instead of carets for all the @angular dependencies, e.g. `"@angular/core": "~4.0.0",` instead of `"@angular/core": "^4.0.0",` I...

@alxhub the Angular CLI hasn't included `moduleId: module.id` in Component decorators since mid-2016 when the CLI switched over to Webpack

@webmaxru Maxim, thank you _so_ much for weighing in here. We all want to see this project succeed -- let's work together to make it _awesome_ 💯

``` bash Cypress test command: npx cypress run --headless --record --config-file ./cypress.ci.json --browser chrome --env password=*** /usr/local/bin/npx cypress run --headless --record --config-file ./cypress.ci.json --browser chrome --env password=*** Can't run because...

imo accessibility is too big a domain for Angular to provide any level of real guidance and this should best be left to other tools that already provide the same...

@yuchenshi I'd like to help with this as I'm not able to get _some_ emulators working is there a place in the codebase where we've already established a pattern for...

thanks @deining -- I've got those in my `package.json` in the root of the project and have tried installing these as `devDependencies`, `dependencies`, and as global dependencies (with the `-g`...