diff --git a/README.md b/README.md index ba81a3826..d4d7b816c 100755 --- a/README.md +++ b/README.md @@ -1,18 +1,18 @@

- + NGRX: Store + Effects app

Project seed app for our NGRX application using Angular, NGRX Store, Effects, Router Store.

--- - + --- > This repo serves as the seed project for the Ultimate Angular NGRX Store + > Effects course as well as the final solution in stepped branches, come and -> [learn NGRX](https://ultimateangular.com/courses/) with us! +> [learn NGRX](https://ultimatecourses.com/learn/ngrx-store-effects) with us! [Setup and install](#setup-and-install) | [Tasks](#tasks) | [Resources](#resources) @@ -42,9 +42,7 @@ some quick tasks: ``` cd -yarn install -# OR -npm install +npm install --legacy-peer-deps ``` This will then setup all the development and production dependencies we need. @@ -52,8 +50,6 @@ This will then setup all the development and production dependencies we need. Now simply run this to boot up the server: ``` -yarn start -# OR npm start ``` diff --git a/package.json b/package.json index fc744bd1a..a91222fbe 100755 --- a/package.json +++ b/package.json @@ -38,7 +38,8 @@ "karma-spec-reporter": "0.0.31", "karma-webpack": "2.0.4", "ngrx-store-freeze": "^0.2.0", - "node-sass": "4.5.3", + "sass": "^1.70.0", + "node-sass": "^9.0.0", "progress-bar-webpack-plugin": "1.9.3", "raw-loader": "0.5.1", "rimraf": "2.6.2", diff --git a/src/products/components/pizza-form/pizza-form.component.ts b/src/products/components/pizza-form/pizza-form.component.ts index eca53fb4d..8b2c03854 100755 --- a/src/products/components/pizza-form/pizza-form.component.ts +++ b/src/products/components/pizza-form/pizza-form.component.ts @@ -92,7 +92,7 @@ export class PizzaFormComponent implements OnChanges { @Input() pizza: Pizza; @Input() toppings: Topping[]; - @Output() selected = new EventEmitter(); + @Output() selected = new EventEmitter(); @Output() create = new EventEmitter(); @Output() update = new EventEmitter(); @Output() remove = new EventEmitter();