yarn add -D @nxpm/cli
yarn nxpm-stack lint
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
| { | |
| "angular": { | |
| "alias": ["ng"], | |
| "terms": { | |
| "router": [ | |
| { "label": "In-app navigation: routing to views", "url": "https://angular.io/guide/router" }, | |
| { "label": "Observables in Angular - Router", "url": "https://angular.io/guide/observables-in-angular#router" } | |
| ] | |
| } | |
| }, |
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
| @Injectable() | |
| export class DataService extends PrismaClient implements OnModuleInit, OnModuleDestroy { | |
| constructor() { | |
| super() | |
| } | |
| async onModuleInit() { | |
| await this.$connect() | |
| } |
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
| [iPhone 6s]: INFO: HMR: Hot Module Replacement Enabled. Waiting for signal. | |
| 2020-08-13 11:36:33.536 nsplaydev[8557:706933] PlayLiveSync: applicationDidFinishLaunching | |
| 2020-08-13 11:36:33.600 nsplaydev[8557:706933] ***** Fatal JavaScript exception - application has been terminated. ***** | |
| 2020-08-13 11:36:33.600 nsplaydev[8557:706933] Native stack trace: | |
| 1 0x10319b2fc NativeScript::reportFatalErrorBeforeShutdown(JSC::ExecState*, JSC::Exception*, bool) | |
| 2 0x1031d1a38 NativeScript::FFICallback<NativeScript::ObjCMethodCallback>::ffiClosureCallback(ffi_cif*, void*, void**, void*) | |
| 3 0x103cc4afc ffi_closure_SYSV_inner | |
| 4 0x103cc81b4 .Ldo_closure | |
| 5 0x19f000644 <redacted> | |
| 6 0x19f00068c <redacted> |
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
| curl 'http://api.loklak.org/api/user.json?screen_name=amcdnl&followers=10000&following=10000' |
| title | Tutorial: Styling Angular CLI Apps with Bootstrap |
|---|---|
| published | true |
| description | In this tutorial, you learn how to use Bootstrap to style Angular Apps. |
| tags | angular, bootstrap, tutorial, beginners |
| cover_image | https://dev-to-uploads.s3.amazonaws.com/i/9hnz0q3oe7a5nnighvq2.png |
| series | Styling Angular CLI Apps |
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
| name: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: Build |
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
| export const myRule = (_: any): Rule => { | |
| return (tree: Tree): Tree => { | |
| const files: any[] = []; | |
| tree.visit((file) => { | |
| files.push(file); | |
| }); | |
| console.log("Files count", files.length); |
