This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install Dev Dependencies | |
yarn add -D prettier | |
yarn add -D babel-eslint | |
npx install-peerdeps --dev eslint-config-airbnb | |
yarn add -D eslint-config-prettier eslint-plugin-prettier | |
or You can also add a new script in the scripts section like below to install everything with a single command: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Declear in parent component | |
private _fabricUnitFilterSubject = new Subject<any>(); | |
private fabricUnitFilter$ = this._fabricUnitFilterSubject.asObservable(); | |
// attribute | |
[fabricTypeSubject]="_fabricUnitFilterSubject" | |
[fabricTypeEV]="fabricUnitFilter$" | |
// child attribute | |
this.fabricTypeSubject.next($event || null); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: Open Windows PowerShell in Administrative mode and run this file, i.e., ./install-choco-script.bat | |
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
:: Install Applications Utilities | |
choco install vcredist2010 | |
choco install flashplayerplugin | |
choco install 7zip | |
choco install ccleaner | |
choco install GoogleChrome | |
choco install firefox |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: Open Windows PowerShell in Administrative mode and run this file, i.e., ./install-choco-script.bat | |
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
:: Install Applications | |
choco install vcredist2010 -fy | |
choco install flashplayerplugin -fy | |
choco install k-litecodecpackfull -fy | |
choco install ffmpeg -fy | |
choco install jre8 -fy | |
choco install javaruntime -fy |