{"maintainers":[{"email":"jack@nrwl.io","name":"anonymous"},{"email":"missing.manual@gmail.com","name":"anonymous"},{"email":"hello@nrwl.io","name":"anonymous"},{"email":"jason@nrwl.io","name":"anonymous"},{"email":"juri.strumpflohner@gmail.com","name":"anonymous"},{"email":"altan@nrwl.io","name":"anonymous"},{"email":"james@henry.sc","name":"anonymous"}],"dist-tags":{"next":"7.8.7-beta.1","latest":"7.8.7"},"author":{"name":"Victor Savkin"},"description":"Angular CLI power-ups for modern Web development","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" width=\"450\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0g97pW0\" target=\"_blank\">  \n    <img \n         width=\"728\"\n         src=\"https://images.ctfassets.net/8eyogtwep6d2/40ASb6l6MR7V0w5ntqZ2yi/b4d439fcf56e50085d1f76df1bee41af/monorepo-banner-angularconsole.png\"  \n         alt=\"Our Newest Enterprise Angular Book\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enterprise Monorepo Patterns](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","users":{"agalazis":true},"license":"MIT","versions":{"0.0.1":{"name":"@nrwl/nx","version":"0.0.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.0.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"5dcdbc8fab598c1100b65ed32632ab32f618bd1d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.0.1.tgz","integrity":"sha512-Yyy0JjEJsrnnEG5AEIUh1hE/6geIq7Usu6YiNpeU2Lm5YqBbAQuIdXxFuYKtt4o51aiMDk71tYDQyQgj9N0O/w==","signatures":[{"sig":"MEQCICGzmNf/nA0NwWehd73SbGnm4zd1kSBsQmO/aGceisnwAiAdhQkNlXh1GGT1fEDcG8VJGryNXmZ/shVE0iSnoHyMtg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","types":"index.d.js","_shasum":"5dcdbc8fab598c1100b65ed32632ab32f618bd1d","scripts":{},"_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"3.10.8","description":"Angular Extensions","directories":{},"_nodeVersion":"6.9.0","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":">5.4.2","@ngrx/store":">4.0.0","@angular/core":">4.0.0","@ngrx/effects":">4.0.0","@angular/common":">4.0.0","@angular/router":">4.0.0","@ngrx/router-store":">4.0.0","@angular/platform-browser":">4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.0.1.tgz_1504298762336_0.7795296071562916","host":"s3://npm-registry-packages"}},"0.0.2":{"name":"@nrwl/nx","version":"0.0.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.0.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"e5c1f77e0d9cda6f5a93c6922dcde57165410b19","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.0.2.tgz","integrity":"sha512-TjqZvW+6r86X9MpBh02QIJAETRtnX03WfHlTQG4iT8u1waBXnoEctyscdrPGfQACPOT8OKrLOzUZaHVka07uzQ==","signatures":[{"sig":"MEUCIBtfI0KAHM9NNn/UldOKtT15YgaXi1m25l5kK6pXx2gFAiEA8Jb2WmjshZluqTJioR4feYGI46puMfABkv4bjXqvyVI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","types":"index.d.js","_shasum":"e5c1f77e0d9cda6f5a93c6922dcde57165410b19","scripts":{},"_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"3.10.8","description":"Angular Extensions","directories":{},"_nodeVersion":"6.9.0","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":">5.4.2","@ngrx/store":">4.0.0","@angular/core":">4.0.0","@ngrx/effects":">4.0.0","@angular/common":">4.0.0","@angular/router":">4.0.0","@ngrx/router-store":">4.0.0","@angular/platform-browser":">4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.0.2.tgz_1504298882656_0.046745892614126205","host":"s3://npm-registry-packages"}},"0.0.3":{"name":"@nrwl/nx","version":"0.0.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.0.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"7bfbe7c22f47d15b17fc4793ba54795024b2e935","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.0.3.tgz","integrity":"sha512-Jp+iw+bAjTkbt9DzdQntQwlHCKuj344F2+TAEyUN7ZjqBfL56k1N/kM1tUl99N5wbOO271kdrtz5BapYdxb69Q==","signatures":[{"sig":"MEUCIBqkjLGuQgYtYfBDWZxpLPRSw8YbsFhakUeJNJ+UqWoBAiEAn/eEoPXvxQ7yVG/HXhHLTkd8eOANGFZTSAnYX5uMrp0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.3.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.1","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":">5.4.2","@ngrx/store":">4.0.0","@angular/core":">4.0.0","@ngrx/effects":">4.0.0","@angular/common":">4.0.0","@angular/router":">4.0.0","@ngrx/router-store":">4.0.0","@angular/platform-browser":">4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.0.3.tgz_1506006859775_0.8407034187112004","host":"s3://npm-registry-packages"}},"0.0.4":{"name":"@nrwl/nx","version":"0.0.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.0.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"daca5e54586c738ff8e75b1bbd16c1b5ef5f9a37","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.0.4.tgz","integrity":"sha512-f2WaydtG1LXuTt4OWDv3GJrUcN6QjLeE0nIvcCKKriAagW4Ishq0IPG9JDCpqIVc3Uaeun11mDBLkHaCsFYSyQ==","signatures":[{"sig":"MEYCIQCVYkCYu2+oY40UxdrsKujP/+EdNawbLGphYNV/YKDByQIhAKthZ2BACGVDF7MX2q8LyT2ie9XYwmq53o/VwT1O9sWy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","types":"index.d.js","_shasum":"daca5e54586c738ff8e75b1bbd16c1b5ef5f9a37","scripts":{},"_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"3.10.10","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":">5.4.2","@ngrx/store":">4.0.0","@angular/core":">4.0.0","@ngrx/effects":">4.0.0","@angular/common":">4.0.0","@angular/router":">4.0.0","@ngrx/router-store":">4.0.0","@angular/platform-browser":">4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.0.4.tgz_1507141574085_0.6666373773477972","host":"s3://npm-registry-packages"}},"0.0.5":{"name":"@nrwl/nx","version":"0.0.5","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.0.5","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"a5741de8aaea79105fce07ab23512e6cab8b4696","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.0.5.tgz","integrity":"sha512-RNkGrUlK0K16U9kVHnUuaQ2iqLAuaOc/vSpgGyxiMG1uPZWBaiZdlO5TN0cRiDWdC24QovvRoqNnAsk6fcpt2w==","signatures":[{"sig":"MEUCIQCybjHCmDPh2vCvWndmEWjv2ffAFiZDBbD68BK9c/Sw5wIgRGxrb2B0gIVaIsJh3ARqRroU/F1SqFbPoaPc/qR5als=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":">5.4.2","@ngrx/store":">4.0.0","@angular/core":">4.0.0","@ngrx/effects":">4.0.0","@angular/common":">4.0.0","@angular/router":">4.0.0","@ngrx/router-store":">4.0.0","@angular/platform-browser":">4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.0.5.tgz_1507309922281_0.42495372984558344","host":"s3://npm-registry-packages"}},"0.0.6":{"name":"@nrwl/nx","version":"0.0.6","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.0.6","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"0a5e4ed3695272108ea724ec37db7de4543e5e99","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.0.6.tgz","integrity":"sha512-tGveI1NhUKs4AJ+F4HnoBtfMObcImLBJbPEoJ8aZGXXHcjm1DfgulaT51zUEbV8M9Q91IFvdr0vLjOToYBdJlg==","signatures":[{"sig":"MEQCIFMdHgFMf2QEm6rePAGrDVo/EpU7z1r/TUzC6b4hmP4sAiAaNBV1MqHJiutTlBSz8d0HVkv7UWKv96GvgeyuNZJSXw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":">5.4.2","@ngrx/store":">4.0.0","@angular/core":">4.0.0","@ngrx/effects":">4.0.0","@angular/common":">4.0.0","@angular/router":">4.0.0","@ngrx/router-store":">4.0.0","@angular/platform-browser":">4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.0.6.tgz_1507752251884_0.23406990384683013","host":"s3://npm-registry-packages"}},"0.0.7":{"name":"@nrwl/nx","version":"0.0.7","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.0.7","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"5719b15deeb167992f175b24f311999624a7028d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.0.7.tgz","integrity":"sha512-SsIKj2EdyDvfjv8TvKyy21zrYvegU9zccnvFVdMBlwdDZhkYDPw4f5A+qJW/wGHxxpVHd1t/rn18RMKG/UdZ3g==","signatures":[{"sig":"MEYCIQCajNZ37qG2hzfImi7umN/6GmbnJDzwzR6IE8xz/tTIFwIhALcJowBDAmLItS5T3vBR3p1x5r0Lz/i5H9BZ3F4EaObS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":">5.4.2","@ngrx/store":">4.0.0","@angular/core":">4.0.0","@ngrx/effects":">4.0.0","@angular/common":">4.0.0","@angular/router":">4.0.0","@ngrx/router-store":">4.0.0","@angular/platform-browser":">4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.0.7.tgz_1507817994464_0.34286880656145513","host":"s3://npm-registry-packages"}},"0.0.8":{"name":"@nrwl/nx","version":"0.0.8","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.0.8","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"ce7ad54359c114a8378b8fcd715e784b66a2ad37","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.0.8.tgz","integrity":"sha512-DNCpeltrfq/23qDG2ay8luIA/l9ZAldQQwZtkq++W1q3eUVianNoWwWxNeT8Jy1cGKBudF84sNEkJi9B7SFhjA==","signatures":[{"sig":"MEQCIENE4GwlahObcrgqO2axxK1jqN8JdHc6BrXfBAcLGbkrAiAgwGh4+tV6hN+v90PQJVhTqZU85dBRUSYd+WoQkAfedw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":">5.4.2","@ngrx/store":">4.0.0","@angular/core":">4.0.0","@ngrx/effects":">4.0.0","@angular/common":">4.0.0","@angular/router":">4.0.0","@ngrx/router-store":">4.0.0","@angular/platform-browser":">4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.0.8.tgz_1508700478926_0.5895141689106822","host":"s3://npm-registry-packages"}},"0.1.0-beta.0":{"name":"@nrwl/nx","version":"0.1.0-beta.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.1.0-beta.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"a4ae56bec80f7037a30bb9245856392875c2b4de","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.1.0-beta.0.tgz","integrity":"sha512-sh1NRITdGK6XXTjak0WVJOXD2M4SLzVaZD/YDsRbdP4m/5SvTbToZ0CroleZ+DMYra5XbvvrdKADiKz7608dsw==","signatures":[{"sig":"MEUCIQC1fGif5e23rCv8kpDYWbF7umAxJUjLPQ5AudsCKMl+sgIgBmnfbYYmBSe9AaV+tTWrUGDbMjfLZjhIA/h429Rsyzg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{},"_npmOperationalInternal":{"tmp":"tmp/nx-0.1.0-beta.0.tgz_1508702329408_0.9970809447113425","host":"s3://npm-registry-packages"}},"0.1.0-beta.1":{"name":"@nrwl/nx","version":"0.1.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.1.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"3b4f240d2a195f7de071c4c1fea5d6b15bb97452","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.1.0-beta.1.tgz","integrity":"sha512-qwGT5RzZuXHcvtkAsFCRR4epdOmBWKNp2dDhUY6SJTDM/UKmmG2wyxpomRv2+voOh29aITsoMPfxYpyqlOV5BA==","signatures":[{"sig":"MEUCIQD2swkhlnKw1qJn+6fB1MF1yplWtdaSU5zjN0ioTG10MQIgBjW+TnEiBuCqM0gmqfFfRVhQ8/QXQF/xtTw6+k3nVLw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{},"_npmOperationalInternal":{"tmp":"tmp/nx-0.1.0-beta.1.tgz_1509717920397_0.34023809083737433","host":"s3://npm-registry-packages"}},"0.1.0":{"name":"@nrwl/nx","version":"0.1.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.1.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"8336f2bfe0a67abfdee0a4dcafdb03cfe8132281","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.1.0.tgz","integrity":"sha512-pLAuisy2i3ISrsZtarpe4Y0NDY8k/x1UWOXx3tB0O79awjkA5hdiL74AwPdLFwOFDoymfv00foonMXt7Fp58pg==","signatures":[{"sig":"MEQCICQRqwXYaq3WuyXfpxSgI3qN3LoBI0/OX9N90tsaWZCYAiApuh/EiY3rov6/tGqn9CrhAhM4++dPh3XyTMQsIi4qig==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{},"_npmOperationalInternal":{"tmp":"tmp/nx-0.1.0.tgz_1509718264711_0.5076878936961293","host":"s3://npm-registry-packages"}},"0.1.1":{"name":"@nrwl/nx","version":"0.1.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.1.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"8a76a01debd6e7d96671a5a62373420edda7920d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.1.1.tgz","integrity":"sha512-yuwsrYrz4JAjKzLwKHDOpQ04sul7S08juAneZ5rXxavk2NFP/FveZYRMVey/uhiXj8mpnX3J8kGrVxOORgsCPA==","signatures":[{"sig":"MEUCIGLcQK9x031H7aH6Wu9BFpr5XA0N/PLS/Tm6fjV8qrA8AiEArpQnNIUS0ENzCrJhoCetbZOGfvjMNDlDcDBDlrzTxWA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{},"_npmOperationalInternal":{"tmp":"tmp/nx-0.1.1.tgz_1509718490500_0.2817847162950784","host":"s3://npm-registry-packages"}},"0.2.0":{"name":"@nrwl/nx","version":"0.2.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.2.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"54dba6a40967425683d861438cdee27517f3875b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.2.0.tgz","integrity":"sha512-JQ1hVaeuqpNpAemxBHFLaXXKFq/fh4PYTiefIXGYsh+OdEUT3JzYb4m+VRwmxwt4Dq4EBbcO6GR23MMmNVloqg==","signatures":[{"sig":"MEUCIH0/o5pYsFjlehrkuEilG0BEmVcsobUpgfqOQOYBKoANAiEA/jaWIv1VAeVckSjlXFiaoI3Larf0nc2CTZC4b0NCA3A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{},"_npmOperationalInternal":{"tmp":"tmp/nx-0.2.0.tgz_1510862789702_0.4789229223970324","host":"s3://npm-registry-packages"}},"0.2.1":{"name":"@nrwl/nx","version":"0.2.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.2.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"67f5672bc68e74f52331e401e94f85f63d52f19c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.2.1.tgz","integrity":"sha512-OGe5QiRJrTRMV3Fokxo93YACmeBJr+fCOxd5hJKT0LijG9MObIKr/SxEpPVk/ntuiBWIXzEsTUAbH5kcQF5zZQ==","signatures":[{"sig":"MEUCIHcMzVcaa0K/62uswJpdfu13356/2N9QKxGzMY+sFU2lAiEAqNdlL3p4xaL05vKf7xHCkrSmsOiwdoUNS255NzmYR7Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.2.1.tgz_1511037160573_0.5684692640788853","host":"s3://npm-registry-packages"}},"0.2.2":{"name":"@nrwl/nx","version":"0.2.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.2.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"f1500466e5385123ffd1807fead6cccadb4d4656","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.2.2.tgz","integrity":"sha512-npQJaaiRqWyQSGaWsH2lwv6Ae1qJi4MSoNCC3lF4J7o3BXYgm77pU1mbQYfa5+6ryMLvcYX6evMIZBuXJD/0dg==","signatures":[{"sig":"MEUCIQC3UaNuuibusUU6Ml2xU7oMi1c634EsKz280lJwaerIdwIgPJJBpw6UQMoSZ/180LR1T3E8qdTdrqrIdnCtCQzqjY8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.2.2.tgz_1511745712785_0.31887299893423915","host":"s3://npm-registry-packages"}},"0.3.0":{"name":"@nrwl/nx","version":"0.3.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.3.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"10c4e5599d7e321f40f14fe92b19a0b755842e9e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.3.0.tgz","integrity":"sha512-eVbxWl5Vl+0p5RtRArmMHjuLI6d5OtlPcNJZSb0Q1k5xwbBCWjChTL1fVuSSI2GiIn6k6zYz6gPxNJmScSi+bQ==","signatures":[{"sig":"MEQCIG1ZqYwBsdNyAbXVc9lockIQZAqCLzQ0ITRjgSRG1MUNAiBga2b1rBTP2AhpMRDz9PD53Y1wOkUCOcUfnlVbJZxDqg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.3.0.tgz_1512334533732_0.4432442288380116","host":"s3://npm-registry-packages"}},"0.4.0":{"name":"@nrwl/nx","version":"0.4.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.4.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"9142a69679863dc07ba8e9f34317717eaf6fe877","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.4.0.tgz","integrity":"sha512-4/OXa/baYEZ6phuA5N7rEA+ExWn+1G86BpwIYFSvhFvqj3nFqpVsaoD7Rq0tOO7lH1VjjTzMsdgD6nSTZ00gbg==","signatures":[{"sig":"MEUCIQDBNjOcjYw6RORIctQx7FxDcRaeptzbHDkx49GvH1pqtgIgPHLz7COCX18nGqsIFy8wZYBjKJ1s0C/qGDbxGmKlzfM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.4.0.tgz_1513020112125_0.8737082805018872","host":"s3://npm-registry-packages"}},"0.5.0":{"name":"@nrwl/nx","version":"0.5.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.5.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"03a98cd89a82e78a8d2429d4847af74a1b76bb8f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.5.0.tgz","integrity":"sha512-7l+dmXb6VY6n5Y4yyvDJpHiEHqP26WN0895tkZM2B0KaqmQx6Zh+92XntbDREmq+rRZ57S9j1xPIj2jlDa9czg==","signatures":[{"sig":"MEQCIHtpn6UP1TCuF8ZhApI/NUn1jwD7DcRs+tsgcW3ZapG0AiADqwsV5y0THxIPSmEgRy55jzvCrVoYRljOp/+ywQJf3Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.5.0.tgz_1513111624304_0.171711890026927","host":"s3://npm-registry-packages"}},"0.5.1":{"name":"@nrwl/nx","version":"0.5.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.5.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"dddc042c699d61bdff829e177670ab20c8d563cc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.5.1.tgz","integrity":"sha512-6H6LGirkBhUIeaiTEUT0kTSAj0AKm0wfxaYPPvgfgfeT34c2CEswZpvlQJuGCzMC4S73qQIDJeS+u8xg0zdeqg==","signatures":[{"sig":"MEQCIFfmXZlh0Hul5bGrjJ/uo6y3Tj2xB6l6Sw4WK7sseoXjAiAOQwK9wG1c48p+Dtxj8v9e6eCPhiQLjitUMbeu1FLbfA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.4.2","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.5.1.tgz_1513193774153_0.8237509867176414","host":"s3://npm-registry-packages"}},"0.5.2":{"name":"@nrwl/nx","version":"0.5.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.5.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"bd21a64c459a2ab3089763185a0dceb7a8c1871a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.5.2.tgz","integrity":"sha512-C/6a/aK/RWEEZKpUX2/MB0DRYcKJ5tc/ajcE2Q5Qgrw9qVKPAIwAhfgXhaB3YZ67oIIZUpZKC4EpU+8r+3Z0Mg==","signatures":[{"sig":"MEQCIFJ/xUxNbeuAtJSO9lAkblIWd+MkJ/My1MtC2PDazjHjAiAXwBtwAtNb1jFfahhDexGU1DcuZftAcT/epf8m2PKP/g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.5.2.tgz_1513261552469_0.40444896020926535","host":"s3://npm-registry-packages"}},"0.5.3":{"name":"@nrwl/nx","version":"0.5.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.5.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"eddae29f28cdbcc285ff31abd3652431ae45fedf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.5.3.tgz","integrity":"sha512-D925bhdo+InoAIOT1iWmheUlKmnWahcnSncnJ5iix/UjKpTalkTr80+kcNgZ2L03ed/ZjBEuYG2Iv+fmQS5shw==","signatures":[{"sig":"MEUCIQC9mXBL8XFkcVFApXuSv38SnCHvCvH+i2s7C3ZtpS+idwIgFUzAtXn7dBWc/RG5DkhPsS2kqiLtxUdbOBLqbNTv8v8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.5.3.tgz_1513529713202_0.6732101985253394","host":"s3://npm-registry-packages"}},"0.5.4":{"name":"@nrwl/nx","version":"0.5.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.5.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"2418ad4a17b2f536dca85794be45f436dc58a474","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.5.4.tgz","integrity":"sha512-ejByj03c7ncepLR2dkpDAoSAuKm7ThW8D/RRPJ2Kamyv/wgOSe27LPxAR43W9Y4XoYLzQxL+TaROYvfqoWnA3Q==","signatures":[{"sig":"MEUCIH1BNjs1Vcxi39ZOhQEwhfEpbzNrL6DOHiuggHYr9XqEAiEAvl8aiLTjW1RJjw2cDyzQ1m93dj+fVkH1+PzeBwWMUSM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.5.4.tgz_1513531706607_0.9195295155514032","host":"s3://npm-registry-packages"}},"0.5.5":{"name":"@nrwl/nx","version":"0.5.5","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.5.5","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"641d7c2d77ced68ddf3d94261b42ecc94a9750bf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.5.5.tgz","integrity":"sha512-I364qOFWMKZAY0+wreEY9qxsoBoinJZYtQgI33SQmuHhzxjTUhHA6NFo7/5xRmjB8/BI24ssScLv+TFg76bozw==","signatures":[{"sig":"MEYCIQDyOR6PLOxXiVFYbl86g/F3pTJIKI4L8hV4qokFCyL+vQIhAMrDZO7kDS32TGx+sfUdC5IMAruI4Fecg5QnaDM44Hmx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.5.5.tgz_1513720982093_0.12324011791497469","host":"s3://npm-registry-packages"}},"0.5.6":{"name":"@nrwl/nx","version":"0.5.6","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.5.6","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"2d724698bcb7a9fb240e30504e7c6201d6a70f56","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.5.6.tgz","integrity":"sha512-Ry0yeO0AYiw8xPrkDicS+dNjRdK4urCm6vkpFpBVbiDBokLIW7IzZrYdBu08BPWBo1EmhsDcnftiP390BlnO5g==","signatures":[{"sig":"MEQCIEcdsfU7mdlvAGr549G10D9ZhrBnXMLj6LDm7H0AnA0lAiAKApZEcyZVAPcZjJKQsT2NXFfpd0DbXtZck39KZMWq6w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.5.6.tgz_1513722443856_0.8129174839705229","host":"s3://npm-registry-packages"}},"0.5.7":{"name":"@nrwl/nx","version":"0.5.7","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.5.7","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"ff7ff7649df3cb7a9789f63e75aaccc81e8be9bf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.5.7.tgz","integrity":"sha512-k4IFdk+BPkQ46RTpFPYktUDmzNgM4pXsNdSs6zGe0zSLGHaGiCUIweKizMUOIHGYyekh4wJ9J0NuEnxgjznk/A==","signatures":[{"sig":"MEUCIQDVa6JcnV4mC7/ZHw7aOYYrC1qJuNPFyA5cY2X7E1hScAIgX1Wb54u6hgtRur4FfzltQwuB8s5Z5WAuclyQvYcfPqc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.5.7.tgz_1513733632283_0.15243247500620782","host":"s3://npm-registry-packages"}},"0.5.8":{"name":"@nrwl/nx","version":"0.5.8","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.5.8","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"f9e344774ed5ad84dfd3a87c34b228f476edc3a5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.5.8.tgz","integrity":"sha512-S8prT1JfeYFZZcuPzDm8lcAFZXxUOyudWobInzhkqwLOJWsDHlYQ4mJU2pC8UST9F67QNPcTKRpviOUV8PArFg==","signatures":[{"sig":"MEQCIG06oN8BOjyZj6HSdWl18A9eqfynSKTwow2F2Jb79wFUAiB5OE5spYv7CJ+BD299amlsX6dangXC1e09f3mVNeh4Hg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.5.8.tgz_1513788657691_0.48758319136686623","host":"s3://npm-registry-packages"}},"0.5.9":{"name":"@nrwl/nx","version":"0.5.9","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.5.9","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"4941234aa21566efd18b8f27c9422133ef41b73e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.5.9.tgz","integrity":"sha512-0oK7dP7upKERU5E4JOP2rGTljscQ3gfyzp1nU5xTMkPKtt8hREEoWYFKjq35RK6LnIsTGxttlBtfjx3TqDMiuQ==","signatures":[{"sig":"MEUCIH67KSZVCGGF7veYRMcHQ6qaf/33ZSTzEw85rk0eMSgTAiEA6Xiw4t2+iQJ4DnsGdoOwIUmcLM32ycY18gWDkFkYr7g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.5.9.tgz_1513794702902_0.7810956588946283","host":"s3://npm-registry-packages"}},"0.6.0":{"name":"@nrwl/nx","version":"0.6.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"34e09859684b0d2a1ee2de2bc163c470b570c66f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.0.tgz","integrity":"sha512-vNjeP5oVr4B8lvEY0sfNh1n/+TtCGT+8Shdl376T+dLynOc2ki1mFaeILv+j97krcgNXs+OhE9o1Eg60PyBfXQ==","signatures":[{"sig":"MEQCIBT3mBA9n4v9aGJBowgwTaNHXmPGO94C/uM81N7vvFIoAiBSWVD8opi7hoEqk7VhGHEdU/0jP3EUaGf6UvFSEAUbag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"6.9.5","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.0.tgz_1513876200629_0.4171910909935832","host":"s3://npm-registry-packages"}},"0.6.1":{"name":"@nrwl/nx","version":"0.6.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"6cc2b550b5efbf594bbda6853b66eb23d54be415","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.1.tgz","integrity":"sha512-X15s74vcbSPMvR5z9HVj5o9GZE5czAjIOVvPDwNVCbwsL9aiYOu6BMdUHcRhykcv5tOKkIwbBTbEmA3U0vqrQg==","signatures":[{"sig":"MEUCIQDxfiHM8w7p59gPq4yjMFvn2tkbIHarQvsV3g6gV9r9PQIgUkNhKyaD8s7bDxxXZCu+DygAjTHh4/aIwoD8jiXY09w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.1.tgz_1514926341588_0.0891610854305327","host":"s3://npm-registry-packages"}},"0.6.2":{"name":"@nrwl/nx","version":"0.6.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"7dcdc665ba0ab82e00f7d9d28938d9ef4c4f4751","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.2.tgz","integrity":"sha512-v3jSD0sDqTih3fGohZY73Eywg6xHNoNgbE2hOI71RrrETM62670349FBQS7u4wP4m5buBp8filQwp2VXNi3Lsw==","signatures":[{"sig":"MEYCIQDPoBbIGkNkNhQO1qdpN6zhZCCK/ytks1331tBMAtzQ7QIhAOLucntZE2/xoADZy1R5DqnVtAONGiRmU30Hn7PIpkCo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.2.tgz_1514927633863_0.7029147194698453","host":"s3://npm-registry-packages"}},"0.6.3":{"name":"@nrwl/nx","version":"0.6.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"ad19e0abf7ea75739c224247873c851ec4fc4912","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.3.tgz","integrity":"sha512-9Ls6juXEThfVZEU2W5MhnkdigAWyGJSZJEj0RdaLUo2Zm2B4YWGU58CryrjFrVFRl5cNhxio/ZkZVrOWdmRyTA==","signatures":[{"sig":"MEUCIGyKmUH8cNHKPWoxgT7XBVBhOT5m9nlpmju24LTrBAIqAiEAxr5RLigr03VEJ0YooVTgTMjQmKszA+ufW1xhKrUUH3E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.3.tgz_1514990689210_0.6843015048652887","host":"s3://npm-registry-packages"}},"0.6.4":{"name":"@nrwl/nx","version":"0.6.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"60ccabb7acd39838cb389d3ea8fb4f8ef5d6c603","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.4.tgz","integrity":"sha512-hImLCyEtyGvynRJFFUBRDBV4txEcwSEJPt40l0IICoGtOOU+7iLgcL9rv2WP/N6zrZv158lRx1xJ956Dkf0umQ==","signatures":[{"sig":"MEQCICSecl+CF+o6wtSeGoaoHOk0j0GukvxnShsyKeXijj9DAiBxnhjWzTsnm42M3MVcb5g2CN0OcIPWxeGKuTv939x/aQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.4.tgz_1514996064603_0.845493963221088","host":"s3://npm-registry-packages"}},"0.6.5":{"name":"@nrwl/nx","version":"0.6.5","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.5","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"bb1ec9d22ee2bc395bbc8f790e4f1a104a5393df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.5.tgz","integrity":"sha512-gxiF79QA3kchPxplC6oTpY1Di3XxVXFYFXlq9BCd79wzNIj9e9bGT9LRKnCbuoEog1w5z2AFkqmoBKhrai/rUw==","signatures":[{"sig":"MEUCIQCrkFgv42mt7xf5OLeNo0wP9qW9pMAj652NLUCyevVMCQIgcKGimSyK5CLMDythoYenWP7Q23JeXGzDBRkrE3Y5OdA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.5.tgz_1515005927000_0.43446688703261316","host":"s3://npm-registry-packages"}},"0.6.6":{"name":"@nrwl/nx","version":"0.6.6","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.6","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"afecad850cc132508812ea44c8fe73abe648d2ff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.6.tgz","integrity":"sha512-yebW4ImEN8bWxEWvBvu7tWvn/tf3lzrULEW3uayBvG+de65iRAPyY+j9N8h1dqSHxfVuELvG8JBmi1rQVAW07A==","signatures":[{"sig":"MEUCIQCTPEq0ueCUPYv9/d92ZQ6ppzW6ZxQRukugoxxG+VGy1wIgfrRDy7Werj03SSGo9YCkwrSmOd0coMcT7XdmnZvVv3U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.6.tgz_1515009690385_0.4428226314485073","host":"s3://npm-registry-packages"}},"0.6.7":{"name":"@nrwl/nx","version":"0.6.7","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.7","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"be27240d0695939a1d6dbde4f36a4136b5c0c0a3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.7.tgz","integrity":"sha512-/D7OzR7z2We3pm7XYbflQGWNatjdRsM38ffqq4Y6yPdmgZ518fGPIY2E45YJlX3y6UjCgi+Qc4ZZkfl+RDCh1A==","signatures":[{"sig":"MEUCIQDzSILiC2UoU80rtiFmenXKi4mLycYC/5kCV7ZNHVEtowIgCEiZJrguaf2NBU1vuvWzVF3Pjls20JMpsksaBKDh30Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.7.tgz_1515009929399_0.18032707180827856","host":"s3://npm-registry-packages"}},"0.6.8":{"name":"@nrwl/nx","version":"0.6.8","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.8","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"a1ca6c457f0076c4ee73791bcdba792534538ef9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.8.tgz","integrity":"sha512-fn4qZKKoXY53cimeudL2sB9VJ2ATxEPWIu/2lAvE9IWcb+F1zjzEkPhItVJB4tMZAFK1WGFX1JP11PxBNdDxAg==","signatures":[{"sig":"MEUCIQCT69X2t1/tKgv9En18/T71ixVHkvGaPP6jyjIlQT4rrQIgHJsYKYVAYgRuhKU2IuwhJjxkk3phj/1MdSuGlWtdwSo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.8.tgz_1515013945739_0.18373352964408696","host":"s3://npm-registry-packages"}},"0.6.9":{"name":"@nrwl/nx","version":"0.6.9","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.9","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"39a26d3c4a3f8ecf33e383521b16dc56940fe82a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.9.tgz","integrity":"sha512-4h0p3jTWVYceIWtUMQgzrzNgz1dj/bm16KbSCl/U9IqmGSSorK5t+g6sK2ERb2HS4aZbS8Xh6P/4xyfIIPQ6oA==","signatures":[{"sig":"MEUCIQD+YJ12gpZuH0ecLWDD6fbZRg9rPgFfBXzs3jUmJKa3DQIgBAkevuvP9xyLTUls80Bcmh56yJSJb0Shr1ufkDHoLLU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.9.tgz_1515167429037_0.05762789910659194","host":"s3://npm-registry-packages"}},"0.6.10":{"name":"@nrwl/nx","version":"0.6.10","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.10","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"c07c96dc30d3b34ee2ca975204cccebbf0e215e3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.10.tgz","integrity":"sha512-VA1tMAdwkCz0D1IOTfW+Njpc+e2TXx+I37KG/GY1zSKIApeQO1suU2ZpBO6CAJnPLJ46Y8COugGG2lkAfA1jDQ==","signatures":[{"sig":"MEYCIQCbEeckosY0BJVUjtrIQAhAcwoAa2gHAmtjMYmrF+7cYgIhAOuhQyVDfsDaj+ykXli0THI7di8H1DnmSAWKdDEO4jTF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.10.tgz_1515466368550_0.9285680283792317","host":"s3://npm-registry-packages"}},"0.6.11":{"name":"@nrwl/nx","version":"0.6.11","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.11","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"b53003e1d58150544b8e4ca65bdc7733cc56826c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.11.tgz","integrity":"sha512-FvFE9dyVs3KbfL+rj1I6pXzjqQuMrEagmdw860BlQ55MnqhvxckgW/JuGwIi8gzxo7OPsXCYFyL1aOxrg9qFoQ==","signatures":[{"sig":"MEUCIDz96oCWPfzutZCMdFYrvJ99P+H23bYcqOawm+9NPL6MAiEAmKmF5JW/ylFtm9zoFUShl9+xRnFyHQMzekOTbagSTxA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.11.tgz_1515773319461_0.9969676486216486","host":"s3://npm-registry-packages"}},"0.6.12":{"name":"@nrwl/nx","version":"0.6.12","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.12","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"32913710ea5744556601c6843f6c8b91fbde6aa0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.12.tgz","integrity":"sha512-nPxR9K8dYXUBEDfBQzF2a5vb6uWZHH7bhVSGM2RnFm4+A/65mWRAieCuTrhrWqBM/ub++Z5Bi+M+udHJx+4HmA==","signatures":[{"sig":"MEUCIQCnGqQfroatemP55WzdRmswAPZXYJSLSofH9UYg9h6xkQIgR4/DXodzUzF1F4PooI1PkRyAPlZSTSi53jDhQBD+c+k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.12.tgz_1516148031900_0.8741827365010977","host":"s3://npm-registry-packages"}},"0.6.13":{"name":"@nrwl/nx","version":"0.6.13","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.13","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"5365a39b09fe1c45ad6f6f1cedd5719389babac3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.13.tgz","integrity":"sha512-a8b66/LBJuaxducs7tVEiU2i+gMn1ycPhYGc1sPeEBaClHKjXXcjZvEgoueFnT59iZwPnxZFT4Yw1D4l+0Gdeg==","signatures":[{"sig":"MEUCIQDy4cWjr7Un/xhHsMZ8uQwm9gMzSbILP3hZuMAtCZV8PwIgUzhlxDR93WNc7JuulB3T5fzOkwqRrT/Sso6+yYFvEgo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.13.tgz_1516149029466_0.34168003452941775","host":"s3://npm-registry-packages"}},"0.6.14":{"name":"@nrwl/nx","version":"0.6.14","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.14","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"68d2d6ff338e4141a61bd9517ea797b57f4db21b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.14.tgz","integrity":"sha512-4BcWdYHiL1uOue8ryNn+2TWgFE2m1qlGYUqEkzuwoxTBErCuqNvOhTSj//HLROsNJO7PlkNa//DQ3DMwXyNciw==","signatures":[{"sig":"MEYCIQCvlqaUAZrBONNeC6zExq0D3rv9aSaY+BKfnJiTNfXkGgIhAOkvSeouPwmScRR+xggNjQjRPtXjs7S1wZ90u733wyYX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.14.tgz_1516394430444_0.012423634063452482","host":"s3://npm-registry-packages"}},"0.6.15":{"name":"@nrwl/nx","version":"0.6.15","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.15","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"6595d2c035d0a8c1b5d79c9f53cbca2adf4dfada","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.15.tgz","integrity":"sha512-ezqE8ExZmx/haEK7hVWUznReGOYK/D3b+DfLL+AiJwmhLsjmFezN5S5Pbventb9nYkBraaHRWJEBB5NNlBlvOg==","signatures":[{"sig":"MEUCIQDqy+IVBye1tujgXI4q/W2ibT2gFXjSUQJor2iTWKgHNQIgZ4s7JnJ+DgWhJr5revytOw2UOXyFaEeR7j+laQfQFDI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.15.tgz_1516396587662_0.4505310517270118","host":"s3://npm-registry-packages"}},"0.6.16":{"name":"@nrwl/nx","version":"0.6.16","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.16","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"f2a39ec427ca467bc6ce1747d93365ae20abe883","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.16.tgz","integrity":"sha512-92+kEY6/UDRnmh2J63GTGsmv2MW2c/Q9r4A0LcihddfGFfcJ8VkmAnOQP91aSCOLhIyrsdwEXZUG9OOKI3/QZg==","signatures":[{"sig":"MEYCIQDJECHioRH2YE/+VU+AWQIdSbBS8jPVEhmJOYCtUd8IAgIhANvgEn2Rlh7qjB+GBEFb9Q44xbEVMxDp0rYz5D7C+s8h","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.16.tgz_1516397160620_0.7626999460626394","host":"s3://npm-registry-packages"}},"0.6.17":{"name":"@nrwl/nx","version":"0.6.17","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.17","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"9db39778faf4c793a71d239858c5c389929e6808","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.17.tgz","integrity":"sha512-IgLtv3Gsxl2608rxwCy2l1f4hL69XOG5Wb/gYP47CrjDKyjIuZlAeZh8N51Cq8YM86Z/BKQx6PgL0Rm8T3KNvw==","signatures":[{"sig":"MEUCIH/2Py7gD6u2YWUIZ82rNKjQkViQ/orjKgV80VZ5PLMmAiEAor8oMhAscfkiaXa5GV6DcdHcDcerRTix6PcRkNVXU58=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.17.tgz_1516397659847_0.1703193241264671","host":"s3://npm-registry-packages"}},"0.6.18":{"name":"@nrwl/nx","version":"0.6.18","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.18","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"0ccff53da59391903a55e195156f6b286e3a946f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.18.tgz","integrity":"sha512-ghUwehbukCUsI/1WpUfiAGmb1F0UFaJ5othZsexGkbnFDhXxsjL0cslNFeoJntiGmOWNW0pEXrAz4woGK53s+Q==","signatures":[{"sig":"MEQCIHwr+t65VKCFobcax4SXR0kubZaG29v3yYj54uOtXfQgAiBV2YkDCoLUMUQ7HyxVeZ4HxgILVaT9dJF3kZMKQYbjtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.18.tgz_1516490258044_0.9149748566560447","host":"s3://npm-registry-packages"}},"0.7.0-beta.1":{"name":"@nrwl/nx","version":"0.7.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.7.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"09ad4510c831a18af20fa826c72ea967e29e02be","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.7.0-beta.1.tgz","integrity":"sha512-tYIJJEp8Zlw3NUqqneMircEGqYVFRdteYWdG3ALjj2fx5dtmZiEI8jy0v1ykg3U+22FDxZoV0Xfpc+0Y6i0eVQ==","signatures":[{"sig":"MEQCIFloyDG17RUOuEHgyCSMKNwubKQ2r5rfoUv9QDjJOqKvAiAa7NresJbs/h8fuhT5GZohdFqwWjR+nNMYRKCUsZISdw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.7.0-beta.1.tgz_1516562746404_0.0999782623257488","host":"s3://npm-registry-packages"}},"0.7.0-beta.2":{"name":"@nrwl/nx","version":"0.7.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.7.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"4654d8c93551d7a52bbe099e867fff3e448f418e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.7.0-beta.2.tgz","integrity":"sha512-OlPKC/6Iwvlj8bQbv7VmZBypP2Ym4yvHz44TgAAroTJzEG+PH0U2qaD715syii5lAAnsy2HP1sgGHMQjVZ+OHQ==","signatures":[{"sig":"MEUCIFKqb6xOSeLFiTcFb1OfCEZFEExJqaSysTBVqbBQSPT1AiEA+PRG1STVMrywWHLfE/LSM8h8xuLV8BLdGZZfk9KKWVI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.7.0-beta.2.tgz_1516573577109_0.28205074602738023","host":"s3://npm-registry-packages"}},"0.6.19":{"name":"@nrwl/nx","version":"0.6.19","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.19","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"73c77772f27d429b406a3ddd249189791089b7b3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.19.tgz","integrity":"sha512-x21RclfQiM0hR4s6JqJePHlMKAM7+Qi4XCNDfyuU4nInDbClad7/flc50S73VbM5+LqZk4h6HTHQOBr3ceoKmw==","signatures":[{"sig":"MEQCIEEGCZHp3wlkUaBYQIMHeDRUFGnRv/JdBpbliIX9AZESAiB3J8StuhGtq30CMtLYxftczDS3pZ3C8vuuzrVUni0W5Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.19.tgz_1516632008236_0.7693059230223298","host":"s3://npm-registry-packages"}},"0.7.0-beta.3":{"name":"@nrwl/nx","version":"0.7.0-beta.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.7.0-beta.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"521c63e99bb3fe71e7cbfb19bf2410b7d4ebdcc2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.7.0-beta.3.tgz","integrity":"sha512-w2hyOi2EPHOq0RL9rjkh/dAB+rmHHeTlyOIjyo2ULvIY2PImyAdgmcjJr3PFgYK6N62l+PZCupQwmTZ6hqH3SQ==","signatures":[{"sig":"MEUCIEP+PKC4HI4IEUsCqCBxBqYSh5PCVPEsRCcG1vfV2FYKAiEAkZYvfYFwfngzbYwVvYA76TVH1+WYSGt5kZl/aq8IewI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.7.0-beta.3.tgz_1516633389240_0.391275716945529","host":"s3://npm-registry-packages"}},"0.6.20":{"name":"@nrwl/nx","version":"0.6.20","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.6.20","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"02846584d90aad5a4b02d013c06f815854d51096","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.6.20.tgz","integrity":"sha512-FnvcBOe6+1evXGpR75fJWZ3lyfrYrERLx7xiLxf4BzldFbFs4Ddg0bmDACyiFgdFiSkJNX74tyycnrweAYYYag==","signatures":[{"sig":"MEQCIAixBQOAwyCijcSs8x6asHr+Y2icWfDyeUTSK2arqRtsAiAQ+6daOE7ZbTayf8yJYBTo0CYMPn4AxccuVwoqX/aaUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.5.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.1.0"},"peerDependencies":{"rxjs":"^5.5.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.6.20.tgz_1517341453151_0.18999173562042415","host":"s3://npm-registry-packages"}},"0.7.0":{"name":"@nrwl/nx","version":"0.7.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.7.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"c92aad29d95a862f635a472422b611b188ffce40","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.7.0.tgz","integrity":"sha512-avWqRxMnPnlUVIrfyJnr6AutWeodmLalraTlwmUTHwUgF2oyyq+/CF0qR34I59pDSGqpWERh5c2dfNiyjiX1eg==","signatures":[{"sig":"MEUCIQDoKXxUstACM6nupw1f4mo6KFh9EuKK0t3jcI1XIa2cuwIgbFu6fy9VCFVOwjC+B/K1mTsrvFY5V96vFTlDcOqetDU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.7.0.tgz_1517362285868_0.7210939428769052","host":"s3://npm-registry-packages"}},"0.7.1":{"name":"@nrwl/nx","version":"0.7.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.7.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"7751b9b0bd9b5025aca93eeac4128a7571813310","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.7.1.tgz","integrity":"sha512-JjEUw/wucP0Xenksxt/1uxJymx7wLAltt68cwOolsqu9SaX9v3FENAT9xjNA0RQpMAy7nYNu8Mdx3cIj8WHqhA==","signatures":[{"sig":"MEQCIAqWs0VDwnnnDXv4W8xgDwO94Ylk0ukrQTE7xYK+gPE2AiByUh71sKh8IzpTUwrp+8Bcexj2wr5l+DPmidN3v08J2g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.7.1.tgz_1517409352698_0.8741336653474718","host":"s3://npm-registry-packages"}},"0.7.2":{"name":"@nrwl/nx","version":"0.7.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.7.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"7f403d84d8786b5540f2c1f4315d450e02f54136","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.7.2.tgz","integrity":"sha512-xYw923yhQUjtQ436xdkdvqeR+ZEdcqsFoC7LY2p+BZE8TEcupOOb1RJEgdSIagkIdShOqGAWa+4CV31Zy8sKQw==","signatures":[{"sig":"MEUCIG1r9PBKq/kxURWFpb4pWZ3HMU8TodsAWttqcP0yD14+AiEAyMY3vA1nfUDW1WSw3Hex31AG++GaMe+zgopBmB8D72E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.7.2.tgz_1517502331999_0.06667772307991982","host":"s3://npm-registry-packages"}},"0.7.3":{"name":"@nrwl/nx","version":"0.7.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.7.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"1a88c98efc0d58ba26c60129c5631274c411fcb1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.7.3.tgz","integrity":"sha512-NK4yBOg6ceugGQjKPRDdJbMQOMhuq2A1sMg7xTCL4YfIEoiwRerGCwSiakOiyoLtfbH0Y8lmOQ3oCtRqIM4nbQ==","signatures":[{"sig":"MEUCIB8jKhpL9NHdmMAmZqNuOAByva3aQTQvnHX4IvjR4QtHAiEA1omJ5nMK9ppKUwrTgbt70/aCURQPqI/7+bnitScfsaU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/nx-0.7.3.tgz_1517580067306_0.49694669898599386","host":"s3://npm-registry-packages"}},"0.7.4":{"name":"@nrwl/nx","version":"0.7.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.7.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"5e5e08abc2f4ceb1a3e77939b4207db5c799ea9b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.7.4.tgz","fileCount":22,"integrity":"sha512-zCN79OOeykBuxvOh2snXNCYGNILwXGMGypAQ4YE4Iu0TMuiYAJsx2h0jyiswJuudA03FvpzmA36RvW4si5vu1A==","signatures":[{"sig":"MEYCIQDfZBjBUWjBqWzucrmAgzYWN4mxy5uLdYKRqcZwNWcrbwIhAM+FlzOa9INb1vvwe52YzzWvUrDkzy4r43YApE/rE9zZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61706},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_0.7.4_1519056392590_0.3705761301602635","host":"s3://npm-registry-packages"}},"0.8.0-beta.1":{"name":"@nrwl/nx","version":"0.8.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.8.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"a3d3686a287d2c2937c25e77f99a1a4fb37a7cfa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.8.0-beta.1.tgz","fileCount":22,"integrity":"sha512-5cV3eG7RW1ZzouJmAFVcNViSc0Ul0HMPqM4wvZ6Ci8+RsjXezxB9v/ACM95Gxia5Y9d9qC7ADJaLGwRIEvL6bQ==","signatures":[{"sig":"MEUCIQDOj4i6vRtE96DeiByOmgTvRB587p5XXWQRVIeniuxHLQIgCNOknONKiBNl+g3awjESOUDYJYQT2hTPtBAVBou8qJ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61713},"main":"index.js","types":"index.d.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.8.0-beta.1_1519603625685_0.32289122749555","host":"s3://npm-registry-packages"}},"0.8.0-beta.2":{"name":"@nrwl/nx","version":"0.8.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.8.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"750e2ee44b17247a4743793ed41a25f11e9a7c55","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.8.0-beta.2.tgz","fileCount":22,"integrity":"sha512-q3eC3CKdcFAUe3qVmukDe3HvgTR+WM9H4oZZWI95HnT/hu62int0QULuN/CtK4iZYrSCCvcIC0BsS7R0g5YUKw==","signatures":[{"sig":"MEQCIF47VhJA/p/L8Wh+SVIB1MjLzJkxLzTrC4d3KTfIN2xEAiAl+X9lA1sqPUxwmsOLToexx2Y+wUvkkvKNR+kj6Gu8Fg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61713},"main":"index.js","types":"index.d.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.8.0-beta.2_1519654195957_0.425112831971707","host":"s3://npm-registry-packages"}},"0.8.0-beta.3":{"name":"@nrwl/nx","version":"0.8.0-beta.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.8.0-beta.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"62e0a21c6bcd8efa7177676916ae020af638f745","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.8.0-beta.3.tgz","fileCount":22,"integrity":"sha512-EO57W/3oCWVOhlH945e8gdnAKS/V1pPIpcHjVpbhCQ7T0DO05Vsua9cUf22MAxBYFQ203+Qnx8zlVyRjlE+G+g==","signatures":[{"sig":"MEUCIQCQ3YrJ2r2Uf6coLBvf6Ga1MCcfqk4t5al1EGRFIDMe2wIgA0n8oCNT1VCr1J8PghVtPTK2VnsYmE17Wh4Ec2SpsjM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61713},"main":"index.js","types":"index.d.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.8.0-beta.3_1519662111330_0.7411937257582151","host":"s3://npm-registry-packages"}},"0.8.0-beta.4":{"name":"@nrwl/nx","version":"0.8.0-beta.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.8.0-beta.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"05357466e79e79baa6d3a9bb89629d5c967b5097","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.8.0-beta.4.tgz","fileCount":22,"integrity":"sha512-QNBvuMGDMhud3JnVXOugSBgH2AKODhqBhQ57B+3H08b/HFGeQiptBy5nE9/170AGkEcgRkZV9wmAUPCt6JYl9g==","signatures":[{"sig":"MEUCIQDsJfug3IPjIJhMZY9Apavt+CHyqJP4M2wxU5QuNLeffAIgQX4jqfldpuq1kl3Y4veY/AKnRRnSMotewVaW8CSIObk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61713},"main":"index.js","types":"index.d.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.8.0-beta.4_1519749421907_0.785291810034606","host":"s3://npm-registry-packages"}},"0.8.0-beta.5":{"name":"@nrwl/nx","version":"0.8.0-beta.5","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.8.0-beta.5","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"62705914d592a08223549cb41fe75bc3a0955def","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.8.0-beta.5.tgz","fileCount":22,"integrity":"sha512-QQwFj/WowGH7wiP3/+WHORS/9Yzy1g0AsW9ckYbULU/JdwB0taYjOferC5KU29JspPAxviOwV1ryl9+Ed3cMeQ==","signatures":[{"sig":"MEQCIGrrm3o7ZKRP6Tf+PSyNC4UzTLHjK52JGzDubd0joZd+AiB6JjXXJvI0YIMmYpyoza//deBNDdMr73xodjBfi+Oz0Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61713},"main":"index.js","types":"index.d.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.8.0-beta.5_1519832365031_0.35068572908300033","host":"s3://npm-registry-packages"}},"0.8.0-beta.6":{"name":"@nrwl/nx","version":"0.8.0-beta.6","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.8.0-beta.6","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"95ef7ba9d5d64eb8faf9b75ef7e820f96ae1ce00","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.8.0-beta.6.tgz","fileCount":22,"integrity":"sha512-1eyd/XbfbNKsWV/oYVY5t4tI1aaYvj7w2BgIBWKy7XkohrulsWd6MCyM97LoWEy9VHErK4zQRc0CTzLHQg+33Q==","signatures":[{"sig":"MEUCIEhc0r8gUaeWSnd78vXXyVOK5KbKV5/n2ziTXRBNPFURAiEA/6A3tiqfRZYQ6qJLP26hJnC3sxS1xYkFjVBYKP961O4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61713},"main":"index.js","types":"index.d.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.8.0-beta.6_1519832996034_0.12045778549141795","host":"s3://npm-registry-packages"}},"0.8.0":{"name":"@nrwl/nx","version":"0.8.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.8.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"8747fde823de792a77505cd96c4dcfa0fe4a3500","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.8.0.tgz","fileCount":22,"integrity":"sha512-+RrEpDLOCPatVV+BAz6v97deuHM5CIBDfgB/ljIj2rcomwti1X13Ld1O/vJHCzQs0OuDpiN2R5j34uc5MmbIoQ==","signatures":[{"sig":"MEQCIBYGZJzi+hdJXF9mXzUD9L4s+fAHFaI/+Czcx26x3mIxAiBj008ZYcCKmYL5o0DlT+93a2PAwV57Cuf1NtkQ9iOsIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61706},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_0.8.0_1519931079585_0.551555200033996","host":"s3://npm-registry-packages"}},"0.9.0-beta.1":{"name":"@nrwl/nx","version":"0.9.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.9.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"3e109043632fd58328cd058a9db30bc86f877e24","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.9.0-beta.1.tgz","fileCount":22,"integrity":"sha512-qrFMRxtCDJg99SOyNe7ZEJb5ffN2/10kwwKmZgXMSLbmD8bTwDbxfs04kLO9tn0G7+7Bw+/nsYYOlGLRoJ1QEQ==","signatures":[{"sig":"MEUCIFGGew4PaoSt9qzzGYFYU633EXgZ6H9rJHME2OvhpCiUAiEAw66LlyB3yfWhj4yPXcFsHV4mvk3cXKDnxe610+deqKA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61713},"main":"index.js","types":"index.d.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.9.0-beta.1_1520982941109_0.2551241213876829","host":"s3://npm-registry-packages"}},"0.9.0-beta.3":{"name":"@nrwl/nx","version":"0.9.0-beta.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.9.0-beta.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"1e821dcb61fc5b89fe1968a9e3553631b8977c5b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.9.0-beta.3.tgz","fileCount":22,"integrity":"sha512-akYGOrWvKnmpvZ1HIA1IEfNbjajcbCglRjObgDHS+fuNzTAKHnm4vg06QCgErSZ4C4AkrW6OafLoJ02LYtzo0Q==","signatures":[{"sig":"MEQCIGHZ1uFSe3+bFdKhdJaXEK7iFEsgMSklQDx3QXGE/+qEAiBsS8sGNbwItiPWWXAMPD1gfTBXlY+Z8CoCNH+PAs/Y3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61713},"main":"index.js","types":"index.d.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.9.0-beta.3_1520984472996_0.7144396843708409","host":"s3://npm-registry-packages"}},"0.9.0-beta.4":{"name":"@nrwl/nx","version":"0.9.0-beta.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.9.0-beta.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"3093adc9b7e49a91959f66a6e3047b4aac2b99ef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.9.0-beta.4.tgz","fileCount":22,"integrity":"sha512-OeRLw6wQyJOtw7hcq/ZLyK6RnR7DhgVqTVJYxrcQCUGD/ryh9U7jREJ+N6ow6OzTG6JSC/d+EeshimBXBbNr5A==","signatures":[{"sig":"MEUCIQCOR8U//ZEKMLqq/n/tHY2anmm6zuIODZRH+zGbR54mNAIga/4hBHfi705RArsViVjNP5FGDZEgkPyLxQBXxORRbas=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61713},"main":"index.js","types":"index.d.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.9.0-beta.4_1520985091727_0.8715419471878278","host":"s3://npm-registry-packages"}},"0.9.0-beta.5":{"name":"@nrwl/nx","version":"0.9.0-beta.5","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.9.0-beta.5","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"946e40c347151f514f387101f658c9d1f0d7e5a9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.9.0-beta.5.tgz","fileCount":22,"integrity":"sha512-lVhS3DWjmX3zdVpll0rj7pRVV6olX9gYVWiXJb6aRyJvI6EEojRPLNKE64UGw4l06UMgG2G4rTyMchNIMJ8uew==","signatures":[{"sig":"MEYCIQDCZhaiQ6jYvpSGhriQGy11jXVAu5fNtfIU2KlDc/bIEQIhAOPDTPelN2soKzW3Sl07+F/yDZrz1TyLwHUYVfJTi4Et","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61713},"main":"index.js","types":"index.d.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.9.0-beta.5_1521135584024_0.6780450840347119","host":"s3://npm-registry-packages"}},"0.9.0":{"name":"@nrwl/nx","version":"0.9.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.9.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"5af5421e2a000066f4ce3d4039d1a1bdbd9e5c96","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.9.0.tgz","fileCount":22,"integrity":"sha512-Dmn7tJXRn9vwsoLJkYsAmjOwrYCYYa5ZpI9GLxcNF/ZU8S/luuhr30dwAtShYIXv9/7ZEXHvVUN7FZi9kSnq+A==","signatures":[{"sig":"MEQCIGJcz62A4MwctGeaSLe0IVVX45rUWVTYPDTo9HHC9Ic0AiAwiWpE4Xnf0esIzVXI5SFWZlw62tTB/jA06+u6pgS/RA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61706},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_0.9.0_1521226412171_0.9596961732752265","host":"s3://npm-registry-packages"}},"0.9.1":{"name":"@nrwl/nx","version":"0.9.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.9.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"1b7b0c71254aae7cd32ef53de523b5b1369b5395","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.9.1.tgz","fileCount":22,"integrity":"sha512-mg95fj6cLHy4MVq2AJvD0/TrQLIa72Unf7emR8DMTq2TGBcl9ZDQ3t/ZV8r08uPukboFl8eesTPPktJ30UgGnw==","signatures":[{"sig":"MEUCIQDMhVQQuptswp7LdNPcCGhZ1Y7EENFGsTpUtx/SvFad7AIgYgV6JYgGgJQ6DZo7Q+bmAo/EDhaGl85yrIkReqfCYwA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61832},"main":"index.js","types":"index.d.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_0.9.1_1521481865233_0.9867880438574252","host":"s3://npm-registry-packages"}},"0.10.0-beta.1":{"name":"@nrwl/nx","version":"0.10.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.10.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"064f942a3d07abfaa6e801c9763c1f3f5bed4523","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.10.0-beta.1.tgz","fileCount":30,"integrity":"sha512-vIm92KMfTIjGBjmp5wvObTFAX6RylK9oVm5ZTNKQXYk2BqUSP/ZZH5G7L+Vax4mybX1EzDV7v7STAOXQDFdKEQ==","signatures":[{"sig":"MEQCIFxiZPlYk4dKCqZ/NgnlpBwBUZVHGbDbiykwt5ZVEcrwAiA+RYkS7QKMnadmvermDq66XNUBYDrgXLQgKF5qVkQ5EQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130787},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.10.0-beta.1_1522712059603_0.39157075963971266","host":"s3://npm-registry-packages"}},"0.10.0-beta.2":{"name":"@nrwl/nx","version":"0.10.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.10.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"f9985ff846f77aa8355a45a95dd611c5ae443c52","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.10.0-beta.2.tgz","fileCount":30,"integrity":"sha512-2hIZE+EYiEZY+BkK4bUKJ5Yk/JFpOayBa+slrYJ1TKyO/xcbB/uBgDH2JK863rNlWG6EeL5rI3IvhvQ1T+s2fA==","signatures":[{"sig":"MEUCIQC0jUUVjLP5VkD/G62WJoygJL3wkLRwY+utizEVoRxczwIgKtrJlBzFX4czbZuMHGU1TDya0Ut0dk59ZhT0kFcs2/o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130787},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_0.10.0-beta.2_1522777758638_0.20257413525624934","host":"s3://npm-registry-packages"}},"0.10.0":{"name":"@nrwl/nx","version":"0.10.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.10.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"b7c2cb0dc518ae25f1956b3f4f2f338fc911759d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.10.0.tgz","fileCount":30,"integrity":"sha512-N3qU/oJ6tvXobJwn5HSUPM5dVANrlbZ7J1dKR8LRJ0wbCnc/FPCG28MNweTMHSvw2yiPmvv9Pc42/gymv3XLfA==","signatures":[{"sig":"MEQCIF0fYnTL4NudJ2adf8JMJp2EPa9EQu9zLU7wnVNGBupEAiBjecHZS1KO4Yz+ATLNTCWh28p2ivZRR7Fm4MOjwPLtTA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130780},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_0.10.0_1522784134012_0.02873384882231833","host":"s3://npm-registry-packages"}},"0.10.1":{"name":"@nrwl/nx","version":"0.10.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.10.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"808dfe926d4c7c35c021681943b932658326a7ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.10.1.tgz","fileCount":30,"integrity":"sha512-el1acN1hALaVpgZojTMDKOOzlP2FRqqwcXLwD33BGkvziX4jpIm5/4XWuFHmVLmne2RfcOYSWvZEEvZm9kRUXg==","signatures":[{"sig":"MEYCIQD0wS1oOQTdyeD2+GPCdfzHo/p6G8Dnr+Q5EukhvanIpwIhAKmvFaOa7hsgsjWNjqPUkf+EKP8LQ2plVpjfMBOARimY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130780},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_0.10.1_1522977159786_0.8548594265335925","host":"s3://npm-registry-packages"}},"0.10.2":{"name":"@nrwl/nx","version":"0.10.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.10.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"e5ca57e3c66e75e24e890d0d581aa306ceaccf39","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.10.2.tgz","fileCount":30,"integrity":"sha512-GyFMoxJu8Y+Ax/DJAMNFzqpcf5OjMxxs5jwYAcvN/T4YN9grm7e/JVQd0SXX1BdlkdgoG6txfBADju2jHreACg==","signatures":[{"sig":"MEQCIHMZv0m/K5CJiK4puNhnQsf/qtdn7NFo3H8e9OKZYt83AiBWPY2W4/+zj0ujmMzmR6JSgX0nk6cJiutlALSSjbVp/w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130780},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_0.10.2_1522977768874_0.1985468390787033","host":"s3://npm-registry-packages"}},"0.11.0":{"name":"@nrwl/nx","version":"0.11.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.11.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"b32a506a1852e64d1b124d3d3ea77310842165de","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.11.0.tgz","fileCount":30,"integrity":"sha512-iur6bagQ76RoEkADQi8PIZn0hedkEZ3nckVS0PAD043nVOKnxh2ajaijlgGzePMMeynS0Mx0AQhY4bxldIB91g==","signatures":[{"sig":"MEUCIQDg8QWy3E1x7SJk4edc2u2s8LeXypkhbFVX6ATjeW5V8wIgAfLaYoKxGhSVQ8h3qI9mY40NLcrmxDtNrorrB611T9w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130780},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_0.11.0_1523062488442_0.26589121738533383","host":"s3://npm-registry-packages"}},"0.11.1":{"name":"@nrwl/nx","version":"0.11.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@0.11.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"92adbb5bee9c2784f1d55841ac77a1d4040e72ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-0.11.1.tgz","fileCount":30,"integrity":"sha512-X8j+Yp+TJEKOlRuDWiBPZgaYgVHhYN3Y/e4j4o0T0GcmY4o0FJCzMUVDswKoDOqMYbwAhnp8qh/rGEy9MWpeNw==","signatures":[{"sig":"MEUCIDQNOfCGb6ME+R48DkgfQCwE1D+m1BOyBuYsB7VJRuoEAiEA07a+2XHttiUZ94NZhWR9FVtDaK1eT9ZzZhXddxo9tjo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130780},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_0.11.1_1523281402435_0.6968173985793433","host":"s3://npm-registry-packages"}},"1.0.0-beta.1":{"name":"@nrwl/nx","version":"1.0.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@1.0.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"e2c6d4728aeb271fc53f9588a4663e3fd8c61d00","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-1.0.0-beta.1.tgz","fileCount":30,"integrity":"sha512-Fxel52yW89cLkHARgBTh0DtANcDxhgVdh5jDWCVjCZrfVCYnc49oReYh6jMc+dILyRd9PskXJxtWjWEOxA1sAQ==","signatures":[{"sig":"MEQCIG4Sbs0kbpz1pv8w1LAEnS8dk+Hs0V+//qn/m5/cKmStAiBLypyJETiKACDQTGaZy/NBOutk6YRFkz8220CMEaoMJw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130786},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_1.0.0-beta.1_1523584546280_0.9588083093342008","host":"s3://npm-registry-packages"}},"1.0.0-beta.2":{"name":"@nrwl/nx","version":"1.0.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@1.0.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"11c10dcf244698d7c1239b794640cac91b3b7feb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-1.0.0-beta.2.tgz","fileCount":30,"integrity":"sha512-1XGEAVTc7xde4DOyuOmNjVqD9ZXVhs8CzIIf8o+B0kyog2gngPy14a+RZHbQ4mW1exZkB9pQpFOGSFEM/yY/Gw==","signatures":[{"sig":"MEYCIQClfYKC0o+HRV5fupVtJ/eqnQzEsUjkMfrstUXcg/pbsQIhAO/eW96Z1pyvLw7VnuRbXLKHkb3Smex5711cH4x1s64j","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130786,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa092wCRA9TVsSAnZWagAAl60QAJywdJSD15uuSwAAiyvN\nonokz8hLC1ABDJyWv3q0d41bv/1r4lWFXN3enamWAblWk+HpZDSAESaGvGUk\nzlvhLOJRL75VJ5VRHhjmSRynna79tivNDF5VhmzLwysGc0DOqFrMUBvA90ql\nOKLjudJqRxHOsjRsBTUG0IuJbeUn/LO+FHrN+135sOruQkZrKZEBSZtTZ+tc\nLHM5IJ6R2salbtPKU6va1STkROB2FtbbrGB2QZMaFXWZJGz9LwcJSMvSt5PG\nygYC3P44IvmnJD7EeZ+s1DoL/bZApX+KTZ00mYGdGhV2/BgCDobyNkHCCZir\niUaKpHib9atj+V9Yylhtt9ydxzOxbjuDxu6OOTuEEGK/m5jc+HgZ/PwVQedc\ns9iMlVahE7dG12qGiUO9odLjRpuud9EASZCKuTyJIdAQxDnPKp2gjN4Iv3bA\nBkMSE1aGuqF2D29Ly6V7gze/se/c8ayLhp/OB9+pHP7W70zRBQW4gJygeKIM\niqu1wH19Dk6jmKUqKR8VVAYN16N4bEVyP0RMArmJA/0MdP+hCeQmhQKCyZxG\nFO0BVmbePf+S093k1n+1ncvMl+Ob84PzOh6GMzvdddmOoPhs1oJHPgV/ZSpU\noEpele63MwjrI9WI6uuIQv4587xQcchQ35nGv98Ji0yBvfLP9cb5PoIBgOmX\nPKj2\r\n=SEBl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_1.0.0-beta.2_1523834287968_0.24187389867639486","host":"s3://npm-registry-packages"}},"1.0.0-beta.3":{"name":"@nrwl/nx","version":"1.0.0-beta.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@1.0.0-beta.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"837862a89124465fafc7fdb7d34ac87d8a6a2438","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-1.0.0-beta.3.tgz","fileCount":30,"integrity":"sha512-Rin3lNkAX+LegF+C7XgxlsRic3wSfKI9kX7/Ls1oGzz6vt0RK9XrvF1/pZx3q/8O++GDi1jo2LOwa0+i6EpTCw==","signatures":[{"sig":"MEUCIGmvKA/AUpBWVKZOzYG3GY/mNtKREBXUrQnaHOYuUWlnAiEA/qfoFaTCH42RnDyi91u2ZA2fEe3Q7U6msLSzKf489V0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130786,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1lSgCRA9TVsSAnZWagAA2FoP/A8YxE2jQGe1PiWSGfkp\nZyf8aZ9syASdo/rZcVbsLLZwvJanhBMyty/eVpkQviYcUNQ/ZOGUGq1o1u1f\nz9uo0lHwYx6xI6wC30d1P0oWdDVlQcPaUooD/cngxTzoG+SKkr8W8dbm29gz\n/IvYRA7KjCoLQB+8d7AegBVfpxxPI/3/JrcJdEnq3fG2zLs7fh7yJHhS6PNh\nFmWHVxy+g0lBk4Wj9CYvESeMocgnnz0OJxtJRTGye1ILpRDPqJCblwEweTer\n3SYzHEBKrOakfyimsyfFvTE01gQ+xMJ6/e7cWzVG8o1p3h6aXGbNrSOOETTQ\nHCbuX6xo/yQ00Eenbz3SqIlKXKfbw1toU93JJU1tlpvWqw6ry+JLdNDLGTHS\nfBZKAhDzNSXNljmQkRfoFHYSm9Nrc3FB8B8wQZS2WLnGRMKXcBPES8OADRRZ\nTZCz5kXHSvWQGMqnSO2qgTGxdNEhZbHWuzIoTmfmTjoi9w0zZXcUS+gbNNmH\nCzvmdahBXneFTRRej8td490mQpOnStk26vEt1OB9AdE3AAp/OIJ3I/kC+2sU\ncNQE2qD3jVBL1yGj4Qp0z72WFSfpWkLNHqn2iL7Kql5A3c7HSsRvmbCSc2NB\nK23ytO9wnWysFmfsw7x4oM0nGTawKYnMMRPAMqAPQOSbmt+0yroEN03S5ujl\nupwS\r\n=Popg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_1.0.0-beta.3_1523995807948_0.5684978084469654","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"@nrwl/nx","version":"1.0.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@1.0.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"5f1365e68c0b2c1414c401b5e70fe83e62a8d331","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-1.0.0.tgz","fileCount":30,"integrity":"sha512-ETx598ui3M8N4XFEXLIV2FwiwYmvnEwmu+jC+n8p4lT72qN8hmTvQTtqQ9ZW+42TW19U+gPBdTPS2TKZcd0IFg==","signatures":[{"sig":"MEUCIQDie9igLEvacHeZwynLf7TIwPXoWTp1otdUA+H2dFIP9AIgeq3vPzwLkJcNQzI/T+878EQgw21hiFijuDcyO8pQTeE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1lbRCRA9TVsSAnZWagAAbDsQAKUTHQ/8MUGICGAjhqiW\ny+3tLjaJbVQ9V3d9GOd0P3tq8b7habw9laD9P319dMvoj3z7wItz0x1kU/Aw\naHymkej+I3Pouxnt75WWVzHDIE0q3Tpiul77Ar6YXGUCSDFxiYVGHvlVKGkW\n0bmJu0nG/iMyRH8srVGn0o162EYtrfOVOl14tHyL2LIditBL9alIrx9FjCe+\nguahNjZtff4ZDLxqAhwAPkBTgDPoKJeF/MeanZf2JuwDYmbtruNulnXP2RJZ\nxJMC6i9ynDMPtfSAGNtl4YfNGWmmIdYOLh02WHwkWmiuH0+PcA7Alz4GOnve\nMuLYY5kQO+2rFjAeneKWyntYoOvLs25l3DA2Moang8QoDGjVGdMaPeIAvVZ+\nKTsqd6OiLF3x4+FkSSCjcTK2ORptjEsHG1f9wbZ/1R4VkUwb0iGiypZEKObW\nDDjsjaeeEUbaX6jd80IMi8DtAuAhb+trRao8A11pwAzGscrsMv4wTBjSFPPL\nSSR1BGzT+ylRa4NvSrE553ibumCGbbd+zKZt6ZGf5u+ZgLGrtF/OxP0hMLso\nDBP70QZefiUvk/onIrQ1fjBZfvv5vXQCSPHm0eY1R5OKkxA5TVryq+rLyJUn\nkbNsuk5K7R1UXtaQJr7TgsQ3jnvXaO8HuOGV/tMw8U3IHdc9P5RPk3iqOPwV\nYr/c\r\n=rb5Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_1.0.0_1523996368437_0.9878168565314169","host":"s3://npm-registry-packages"}},"1.0.1-beta.1":{"name":"@nrwl/nx","version":"1.0.1-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@1.0.1-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"d6719c815e9ba38b279f49fe14f0643019b4ad11","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-1.0.1-beta.1.tgz","fileCount":30,"integrity":"sha512-DIrfsev0bi7Rl3t9vXyH6jUR6X7C+8zMjFjd58NkhpU9R1F5052sPp/8EmjZAnK572BurH7bPyOIwRJKrzRLgw==","signatures":[{"sig":"MEUCIQDPbLUTs4FyEKF6rhL7Xygx4yKUB6e+KJIVuO5fBdl1FAIgOrVkiCjWayDbuJ00MPMy6mov9J41TqkSEk9kKoRtpgk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130786,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa10TUCRA9TVsSAnZWagAADSUP/AycApeXj56lXqom+Niq\nScc3p/vy7vAEINPUG9S/OoZKUma4a+znppCYxmhZe4A4EuKpj/L086JA6rX1\n8odDjuFotk0Ea8JI1JZVMAKM+4tQV9zjlB49B4hW2dekbgamQGBlq83u/YiH\n7pQFMZ0ecY/SrtwSlB7N46oa6v5xZUJCvl5LCRqoAWWM1ruKqmYm8N5mX/AL\nbieoBjZ+PsAkFHT/hJgDtLHQwnW5gB/VDHi2dHIqe5nWRKA1T/FQ1J1k6b3l\ntLAgdy3Wf4IGnwhB+o7uPkgJ9LyH6vE9QixHooPmMlPFgh0lWGmp/KmG/f66\nblEbOKbpFfqCu6/vJbLq1AXfGGx8CNbDtjcRnuyvp884P/sHoB1GGESywYjU\nAWjlAGcVorHXEcAJ7ftzg+2PGkJBuPv/54mAgefuyFyyayS95ZUSoIty4bH8\nusTlqXGgzM1lXz7nyaMWtqvTdY4Xmyvgv5LvpUdbCgIfFEg80IQeb2kYM2VG\nIEyAvbwGhnm3M49yWcQafofvPEjLfFLoQkiX0QI9E4z3H5cfskTWw5LmEM8j\nwK/wYDj0g+my5DdCpEsI5MmGxCnX2J1slIKhn9p0AUKVlHRuFOPlu+pT6Jnk\nFIOLXnAUTlS7j9e/FOUCmws7Ajfx0PBsu7xukJgLshPy7JuejlvCwiu7FApp\nFFs3\r\n=Xrvl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/nx_1.0.1-beta.1_1524057300114_0.5622436433557696","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@nrwl/nx","version":"1.0.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@1.0.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"75f9f81278a5f114f6e6699be8b22186c819cb81","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-1.0.1.tgz","fileCount":30,"integrity":"sha512-hzlUIYyGB6vkro5TsqUMOy2/vBYUTyd7tBAe6oNtqeLJ2wwg2DUZWzpV6BlbQ01xs5tgbFfWS5p46hqtG/i4VA==","signatures":[{"sig":"MEUCIHextvwYWWHdLlfb8sFSK/izHS42bulLhPADSpJ6xRwlAiEAydhZHVoGjqoMQ924KdoARGRA91SLU0XFlTKt8TbnTa8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa31YpCRA9TVsSAnZWagAAl/cP/iO/OZvb2UZRZCQwk04u\nL6ZbLed5cm5hbq2vpuBb15lUNJZaJikMOjkE4OH54IM5apwoY0yvEVAOTBo8\nCWWgbkkXgA5UnnIBBspWmSMBKmlzmrM/1fDmGOqTiZw3U0VRP9QSavtZAT3i\nYuvEusD9tI6Ue+LbeCq02djjPnkmabsaMsf+B/nIuqaTKJiwYfMYDsntjOBp\nCBBPJpgMl6YbpsMsS47+VFlwOIIi2prGMww0ImM0NiC7e0qqUcDYHFQ1UTOo\ngZZoKbEhzw9Wz7mkDZc7ldOhBsufWptmRhs55d13VsBMlj6pcK3BWX6/b3B0\n4AJoINuqk/tJlOZBmY+F/wQB+4DtJ69HWx/gZtrVdpC1hE1E36zT/urStNh0\naof3l5arGu7L2XQM2yFK72aQXiMBYpTk0RVUxjUFJey04LXDDhpxy4mZg+za\nQhjVRwCGJ5m/isaSakYwjc5Nn7vzSWwr2WMF0MmHAJTFneRBm0fEVe5Moesw\n1FyyZQWPj/T1HJKsCOxhohtCFOFh4udS2j3d1nGh/euBYqwr3tnY+X4bdCQ3\nQtdy4KdJ7SuzngLPChNbW0eFbIi9YRi1nVBngax+UjbxcP+hMQuDsmlHso1O\n/ak49cZKRZmJgoWnodYFOkb+SPK0samW3iAFoIlYRafrhPi7+1U9uKxKaM5J\nlUgC\r\n=YEub\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_1.0.1_1524586024268_0.1323763581709374","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@nrwl/nx","version":"1.0.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@1.0.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"ad6d0969ec694040997308dbea7d4b46eb2671d7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-1.0.2.tgz","fileCount":30,"integrity":"sha512-PnJzX8xDl6UNn16yXjaAEQcgnbj2xwdQX7Og3czmKUb7yfLBaf0qpDpxU8D0dsfrGLPzUJ73L6SChPsaGGuw5w==","signatures":[{"sig":"MEUCIQCIA2oYovoiOOlexaQ+uc0Z6lRDgFSgqCvun4CAGY6BXgIgAIi8lIMOu+oAeq7soBd3lS57lRbpa5g1X/AmcBMPA98=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa32J/CRA9TVsSAnZWagAAJI0P/21z9igS4yu8+EjsQsu/\nx/ozfWXcovR9vsC7UHO3ZMa+wbIC3wuBfN6AYgIs2Qzp3OLD5hhYeUIKP3nL\njnIJ79421GVnCW0IkmpmVwtkTGL1cyhxXht8MUFRay8sbn7vPxXJZik2SFTR\nMXWCAhyVIE1r4ivYkeetYlNfZKqoAS/tfRDapgGYnpgvEImr4UXdGEEX0NTk\n1K3XuVERGEDkLWhIB7sck6FAEv3HL2TpUfdP08IVlKZhIcxD7n2/66DSao6A\nWD2/Gv/92bDQZcCkZGpwS/IVL/sMGJD7lPCtjH4RUzFPgNoO3XygtbrlTkJ1\ntb+nrU3iA6uD6vbGwZRS5rLiUOzl/tY3ksMAryq8LBXVlZY30JtbC/waQy1O\nkyQFNbkxC15/7uSv65A7fpFMGJ106KQX2FPw7ZErZ7Z+Nzc5yC1m/GZm3d+t\nQv5jMUX0DQ5otDQaEptitT/6fRLRFhFOAiZk0mwLnFKGTdysY/UUI4n+Wjpz\n2Nc3/syTCW/REftcLU88C2caxI/FBNC74MCp+drzJNyCB3uZ8Kni9C6zRQ29\nVhf3Nq5fKLJii6JMuFOqA1E1CNysulclZX2BX1Q9uYVUQ7on7M79w5Rrwi0s\nJxAVKaFZklRCNuGZzVi8M4GmN/9oleDq/DrVn3gihJJ9K7htYYtIJPvMBONg\nN1ij\r\n=fK2+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_1.0.2_1524589183553_0.4951509884886305","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@nrwl/nx","version":"1.0.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@1.0.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"888f93c8ce0c0d790cc3c62642b3e6b7ef270dad","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-1.0.3.tgz","fileCount":30,"integrity":"sha512-I9CPQOd1buOQabujfEawUJLTkZAAIGIuHSWXwwyZUxTIYS3ph1EPPQZzKeOwr3S3v+s/BP/0nSApLqQ7woPT8g==","signatures":[{"sig":"MEUCIQCbc0hTqLzuHLYQxmHRriG3zqOMOmRVXsMy8mt6ab/mKQIgHRcVnNlfgSz1J9hVvE0igMtoL9qPFjBJt33nMnKnnUE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130749,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4ea8CRA9TVsSAnZWagAAmDAP/0uzJmE8eynoHW2iNLr0\nRBZGuPVb9ZMCTEWr7Rp5mNMoW5nXjswrhAJNgEXJeBZ/9BInq7GnteUHGcm0\n6JUxPgBVFK41jSrq2Anpm2wLZLdu9RAAvV35CNHokeE/j3u5hwPb2HyoRNWJ\nLdgI5WW5owZlY/xcJv5j1emospA8Tc0B2G/+oUfOtXS0tAoEWFikx9PvIZm5\nRURKNq/8TVtMm6rFd7ZVsXq6ykIzgekBFDNFOdVmR7H/grU6FJMvEDY4v8U2\nbebzx1LEZUTY8NniK+hrHQfV5wwDX3VnDO4wwWUxTa837u4jDGWdEGqFUi1X\nrZYFXGOL0XcNjOPzFz6NQKtAbh+zi2hmB1FlenxLN5BAJGKOsRNSdzSXD8Qb\nPHLsMJ7qjKlJjx7nZ0gnTZnWHGtEdWAWyt52XBWNt0nwIhjD7KJUPYvgY06o\n06zMXiuzolNygkl6wfegnrFry5bswaVTso22wrJiwISzkN9m/1mPFUbVBlKt\nWyEtYCtttvTICrq82+YblilqLz8i23PTFNAH91j3S22Ak9bQaDrOZepPCD8C\nQamLgxZbDZBmU2WI8D8AeluCxr0vCTjT+3m5Kki5EW0CiowpsyRTOoRXTk3m\nuh2q5mboowaqeEM/n+1p2lBEQBBcj1/ax+7iQFiGKC9ieru/xPoYgy02i3/v\nn6Vg\r\n=ytV6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","dependencies":{"jasmine-marbles":"0.2.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/nx_1.0.3_1524754107898_0.7046384148866134","host":"s3://npm-registry-packages"}},"2.0.0-alpha.1":{"name":"@nrwl/nx","version":"2.0.0-alpha.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@2.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"3a80dd16e4dd0d63affb7470400b87c346ebc3c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-2.0.0-alpha.1.tgz","fileCount":75,"integrity":"sha512-YOWFKzIyUbWiCK6lA+naG+kOMtMa4I6tkSnFN07usmbZPhOTgTjQyfzHAmZw5jgq8RIFc/6KokSQ/oVDyU0M9w==","signatures":[{"sig":"MEQCIEsnk2Hv6PLUsFAQM6a+Gdm3vPabAaX5rUWKyocY1zdBAiBfKzRJeZwK+UI6QrbpRbJ2r24DrJygVtECcLVNH3nO1Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":310085,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8GT0CRA9TVsSAnZWagAAXxkP/1GCHxAkdAPfPMkuWwnf\neEUG8iEk1t0SYajutClbs6d8GdI6A3Lz49uuiwS0ARQ5EXSrQ8/WtmhtbAFe\nRaI9kFLrDOmbHg3KbXFMKV2qk/AkaI27RUoYisRwmozEopFHWIzZbJUqQbkp\njYM2eDR5XoHfyk8R4FbhFzXe6zTbkpeJDddpR4qJq8i28SS+4SxnAPD5Mt6z\nXpyAwiSXkFf/OVyOo29r16PW7jPyfP9EmeoVT813z4FY68RaTSnL2AFP5az+\nCL7kZBsC+Xnibfmzza80WDAgwptqok87HnTr2RXBEEGq0W7rglmF4EZ70XBW\n6j5mlbiU6FYHBCWswT9zYa3OekdSCfEHC71eHuu3xBNClxmK7IA4E/E2bxOg\nwSEYDJqonGJ+f7kubngN5MXRxeIDMSuRT1QvyZVTA1IqhPb1MoveOLzF7JTP\n7XLRh+I5SDQ0cYXTG1q7wG/VIARgmhZ5+L4rk8W3ncliHhZxL0dbFxR6kkKP\nOWfvQhAtx1H/9omtO+2X2LFqd1D8VFkjCuy17TcaGJMmiciWGcBrnnLQZYYz\ndXQgkn4oBK+GDHXwooBPyTV+WY52ZNryLRyqvXtO86AgPWBE1IXD7CuWSwFv\nNxFTvfFEOb5W0OFpM7PnT3zb5y3dMmOXZLnwvXC2GkvbPru/Tqk1z7pgkSWL\nW6hD\r\n=gA4W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_2.0.0-alpha.1_1525703924117_0.9072101251654006","host":"s3://npm-registry-packages"}},"2.0.0-alpha.2":{"name":"@nrwl/nx","version":"2.0.0-alpha.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@2.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"fd890d995f0e9f977915f51ea22db41354b5d99c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-2.0.0-alpha.2.tgz","fileCount":75,"integrity":"sha512-JvQcHBK3HaEf2Pouqmh0lDP7ZuczuYp10f0WMjRY5obOl19lsa1z775ZYPyCqmeqA+Nrwy8Gz38wIqOrptjGyw==","signatures":[{"sig":"MEUCIARnJqS2kSeEMHXFvqGsMNTVJISEkjl2JqBL7tnxuLS8AiEA59tdsnQTsI0mr/iD2twUO8oNce3Nm6+woGjJEy4y0JY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":310085,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8G/QCRA9TVsSAnZWagAApzkP/0PTEMdZKrLIrEaKj/To\nvmONqObljjC54X/WTXYibVK//cH0zCJ41toPtGOFK4gKlTmjpZ7D4z6ZRkQ8\nRnQIHRdDARZPr8lJCuW4dllZoqRZ5H+lQN6SJDHXTKzOLXIg43VoCIfol1NL\nHQ1krNACAHDgtXfiZzYtBRESfvQjlHq0g/SfPSe/HCNJRNxj3QXTFQw0CF4v\nVAqavHh3exZ13pLkDwJn0Xo9SG3y0kplqU3T4xDrUBSxJvnkvCzskyCZgeSw\nLIAk+Ff802Z+h3HnIUdRPA8E9ywUsNbHFu8kxtaPnTHK8W6rmIUISk3KKLj4\nBC+y3TvIX8PLo5e2dWBUH0jyjJvauhNOfTovKyJOdMgVIsjgDNxB79POyvnh\ni5NxZIcnZKrLXauEAGXAQnQ/1FnYQEKZz9/YtG4Cph5ew9DMFfv5GYvwVJ6V\nYSnC7Rnu6TL5kLf7vmZreserJL3mCBcZiZXJ3ZIObmIcDIXK3a5R5XKjFX4c\nQt66/oy6lRVbt28esWIDEEjO0jwLrqRzKYbWet3Hji0qXu6riDpwplM6myLO\noDYihubQr+xstPwwUz0N04CBx9xRX1ZNSi+33/N6WyopB6T2kE7wQn84FSwY\nQf55uHpEp9EyWOqoD2BRZtwDY4PZ7ot/kcGdB5uywi5jRz+4lqJjRfMjVo7k\nE4+J\r\n=rvoJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_2.0.0-alpha.2_1525706704480_0.46264769867596933","host":"s3://npm-registry-packages"}},"6.0.0-alpha.1":{"name":"@nrwl/nx","version":"6.0.0-alpha.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"f60d74ed50f113b4dc719b8a8d62b764700f04f7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.0-alpha.1.tgz","fileCount":58,"integrity":"sha512-ThyNpVGxfARvrRy0Glyi3ZhdLk9bZrmwZ4ZDTYgwHDLaDtPTVv0BevPZPs3r5aSVdOTCejoXISuPHcCRNB0Xcw==","signatures":[{"sig":"MEUCIAw/a9bkfSx7/iHIMCA0nfh+t8qDw33vKh+Ztvl9IUK7AiEAjh9gLxu1Oe9HBf+KS+KKkwX3jSCD/x7Lhh6vcnS//ik=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194089,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9bwKCRA9TVsSAnZWagAAP34P/ieu7081AcAVqZvpF4Av\no0tJBB7ieSKvpfpzx0+3GoE1Iwf5vsd38HXHqCrr9tDoWcBUamfdFmw6HuRu\n//ylHqhienzUFwoW2Pw50dy/OR/sxdNN6EX5XspT7iuFg5RkHPFrUZZMGBQe\n1Ok8PBECvEzOKuOuXcYVjh+iHX7lNNS0i+/1dKlmI7ixMaQ0u76koWWPiPbk\nPK+RFgN9SULev4rIo0ZJph3Te7tHSlOYsQswMD/eXVDufmGqYPCOdGOYGQJF\nzFKT7aZ3VaLqSee8qGTpL8jSrrcKI+H+iXV4JZZegba1I9rdbKH49eoT3XxI\nvh6JGLkb0bxA8q0lgIB0J1uA4AmSuz4bUG4KGtawKkrBdDfDcB9c82N3lMhd\nlg6Klds9EUMfc93e98WtgMZsAx/zmhxdLB/N7houJOrAR8NQm7saPlt0NB0i\nZFvK+olu+HMtxFsL3BC6hrsDcQQMAj2ZhBDW4jY2xIgdNG/cH/R+TJX1uqsy\nesDQbnzt/ag0jczGBmJjL7b7fr1ptK/2IZXzJiMl2arlsS4qPOuzdUYKe0vD\nh0cnUJrrqFTxmrftxMb1KgxwLH4NbcoxLH6+iBdomf0ZU1w1dGmO4/SeZiTf\nplAtxIT5kJh63IrWJj/MFN4tfggRGr1W2HARWKZZ21X/fjpfdS4WtZXifdxF\nj2tC\r\n=qeck\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.0-alpha.1_1526053897579_0.6405093793156771","host":"s3://npm-registry-packages"}},"6.0.0-alpha.2":{"name":"@nrwl/nx","version":"6.0.0-alpha.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"5852dc6febef674bcbdbe57110fa19d6e392d7b2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.0-alpha.2.tgz","fileCount":58,"integrity":"sha512-unRZr/o4EnmFJyabV7zlVaXbUFTy13OwP30HsJfR31RPeXydkwnJ0gfOJwAUgOQjpQXQOMF10Xq6J93BiONtDg==","signatures":[{"sig":"MEUCIQDIe8FFcq6LBm4ZxMr7x8AU2BTwnlDzpsIm8o6j71DyTwIgY9kfHbnuxbaKf700GENb/j230CIeQuAtelMh6Ziq/pc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194089,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+GDXCRA9TVsSAnZWagAAkf8P/R8Shi9rJTbH1M2xSfAP\nDSSB0exFL6pUeEj2+H1OGUv79QBX6aqVa5Ar3yuhl0UbFoamEbkZshDldilD\n9k7sl1JFnRMPeuMnAF/09RKSKlWWC+Li2j00qxkEPtSgH6Z4EVT72/O4HoWF\nog83pGAJuifxrBmLCoaIvURjwZhOF/pDZFw0eaPfWRSRVVoGVs2haejdHGgp\nBZJVlg7VjPoQg7+OnTibdLE7YV0ElRPFneEfGj2x8fQghnEbST1haqcgctJt\n2p3poiMLyM7PltZw7IO6W5y4jRMLaOe37EPFoN54ZI69unKji/IPCFAIwsw+\n1THPf4j55MlsvqfwY+uzlYpL4e9kt3JFIx9cGmF0kQV08ZmTJlS8z5adP650\ndQyj4JdHB8G4wpW2q4lRHv/n9P/8V3VtqX6hJENX/dTkMIx9bCNyxDt1N1Da\njTnHG3bq0Spkhctd5aLtifpVz3B9uSfFSsNDp3Ed/fKAPguFfDYF6VfO6MfY\nku77oJGcEV8Y3oMIq0MHw9TZbkDBL1uC+BuC+5IgT48VnnMcaqGaRNT/385b\njVtjerpTrxyVMWxDBsmSDjDMgKjOn5lJc3pe3GSBY0Pn9YBT0ofpSew8yg+i\nGjhZdTS5iBrqLiCLrznNOdLFvROAI18D1iMCJedUtUsrTHtZE6UPHGvBy4ME\nO0et\r\n=SAVQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.0-alpha.2_1526227158651_0.8350944048776088","host":"s3://npm-registry-packages"}},"6.0.0-alpha.3":{"name":"@nrwl/nx","version":"6.0.0-alpha.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.0-alpha.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"600d05ba842bc332b3be9c5f4af2d27e8a895f0b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.0-alpha.3.tgz","fileCount":58,"integrity":"sha512-nMBqdu/HsnQHa/FevJjr6gp3j8IqwBUP1yEVv6nhUTEz9trORYAL/e3Sjdq0DhEWG7pIy/p0Q1k2lCLJNGoeGw==","signatures":[{"sig":"MEQCICEQHTPy0UW1mVn4TefFlXdQ6WtbGIAB1ADcBYenkKR2AiBewbna9adlwGbCovFw/PKeQc1UtRVOBZPQ2WKk6AXdYA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194089,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+Jg5CRA9TVsSAnZWagAAu7AP/0YhfMMuqjyWnla4ZgSr\nbJYqsP8bv8NRATU9GPW2Xu0Z9azOrj05UMe83Je3PZM1aoLqulWyQHta63Dh\nel4x5x2VPCk4/SuEH/RcEP24C86uyJ1mO1aHXKP9f49KGOMPox4w5lW6uKT1\n0QOdrf9suEzg6IhbYE44YPBPQZMNNWr5oN6JCzMbsqbzvLkTZxcggm1sOMBq\nFfbszGGr2kndTEjjpm6zqwPaD0JqlgWkr2nCQd5mYNZ4Q1XSjgwNNvdxILDO\nLtd+xkqbS5UqIXQrHy92jVxA7jam4omQ4WzFAoZmzQ1QG0cKwbjL1XyMbUue\nwLk08uXFteyJSLoZbPJpa92SRCkULxiPJPUUPs9pbMh3JC8GgU5NaSeYo/oW\nETEBXfgQiSY0KkmkQYc0O3spEIQASJy80JE4jcdPdBZjuPjSyig+VgZUfLzs\npE+O5BQvL7V4XCjBnfmWre7kI4fqx6E6DOWM8lu1RVew1aK5tB8PN2+rrnGY\nE4REBlo3t93UBjxewt6dHJACnO9SWPvihOIRQMfTmk4y5cNTcPtBNGz6qCa3\nWqahggFb5xXo5oORrDpZbcOQ9G979BFR4JT2tLhjvzggrf9B8r7YHf2DloSR\ncu9aYzkfh5P8lF96TxG41tAKiH/xlvptfFYoayW3pbqGZo1Hg4rD97pycKRg\nJwWQ\r\n=jOD1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.0-alpha.3_1526241337333_0.35566261538108934","host":"s3://npm-registry-packages"}},"6.0.0-rc.1":{"name":"@nrwl/nx","version":"6.0.0-rc.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.0-rc.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"56c6edb909f44438555014b1cbfea7cef5d10fa1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.0-rc.1.tgz","fileCount":58,"integrity":"sha512-EW2q1yIMwKISK19ENqCOjnva7JcAYdxnR4Yl0zMWGHfodvUsTnaWWwtcMMsLJYuREC0Qqo2eqPX5cUXnymIKYw==","signatures":[{"sig":"MEQCIE+s6vXLTPjL46DsL23hHN26yfb8LJR9RX9OpD9KxGmfAiBa8OlHo19uFa1Y9HRuOO6CQ9wlkr2iRD+L5IV/R0CJtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194086,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+ZwaCRA9TVsSAnZWagAAA1kP/jD7ZXeAybVkccYj2oOh\nOkyOgYOWDm9y/3sPU7Bhphg9ACxEPM6j2qAHYE2KMPBa5RC+g0IlwOMYxIuD\nmTKYaSihLut+ZxWu7d/w2sTEfNNMKP6l9Gkr5phShTF1Q7vt4UN5V3IjbMsu\n/dFEDIA2HBW2v7fFIi46FaHQ4LDn3V0Dse2+tuAdjSvw0irJirYc0D62Wuyb\nMyGgbIwPfo2Z5DRXEcaYZgDUztODOvmVyR3Jw6cDgX3/J2iWV/jOSNSuN/E9\nQeiuKTC2UjnztZeqgQJpbhPBwuyiyq2nRfu9iuYRbEyTMpaGgZOPyRqH9PrE\nAqeJTcCld9nYayJjAoYC2LieK8ROryCR7Klsrk866qoGTRt4jZil7041upsF\nnlxQZxXgyiPPemoj14DQh+b0M7SmPwJVKxBYr4lbBgpgBOsKyY9BjGnm66iS\n0IyutMmI+fXMdZiIj1kRevcWv6wjjgj4YqH5yqPALveElKugCRk1f/cDEhrI\nIJzGO9guq8hHOU9MUjedSO14jjK9l7i/YLDZH57xFvonuyTPlm+zwGod8Sas\nBU1+I4qYAPpUFdY5Y/FudWQLqP3gDQZIGUfa9/Rpq/9icb5ClL3435uy+9k9\n+gaZ2mPvGrxmXentafcJRi8+e1XGwOWb9r+qpJh0uSrccVteXazeYMPwQV58\nnt3i\r\n=Qxe0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.0-rc.1_1526307856193_0.23043041215866888","host":"s3://npm-registry-packages"}},"6.0.0-rc.2":{"name":"@nrwl/nx","version":"6.0.0-rc.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.0-rc.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"d75c8342038108769454124c3ae5cef96dce20dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.0-rc.2.tgz","fileCount":58,"integrity":"sha512-E5ddeqLJwRExNjKFjC8nPwHkp72YfOKalToCetruRKOzhc0ohF0i9BcEAp5hJFZq1CQ2xo43Y+gyywjbr64f1Q==","signatures":[{"sig":"MEYCIQDC/n6mixxEYRk4FBWk0TdDTF4v5bePCgWimM2eBaJdjgIhAM6YXOcmeOMasJCHtiKEVnQhJLZEM7uZpfOto7pTK7cr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194086,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/CHdCRA9TVsSAnZWagAAQoIP/0xtQZ2fVue2F5OmVJY7\nGrrAPiqy30Q+UUbebWcWBW1JotWjBd1bNFWlLQ2wGK0OpCeDRZug3bUox5SC\nPYaSdXDZWgcMH/Ykib3M7btafn8ZULuwFHWNu9l8ioaublTLG55vKw3xI2t2\nfNpoBu/8r+S+Tx1gssor7b7cH7ZXl/eDEwfpcJ87Pj5UBxy/pYNHF+JiWNfq\nFMlBD/sVU4rpTDT+yXuWumwwfsjKbdcvYNVw5zAxsntYh3x4VFRZi2IqKE+J\nitgXpsmXbG/1fYUUPx9JDGNCHT09K3wGQxYPBGTfFJHGZSy7sMEv26ogknc1\nIN5L5Sy2Oz4mcdd6PBUygXzCw7JmIBfhSQLSt5vfmqf7ToBwyf5jZDhynz9M\nk+q0HHaoKPiPM1LQKiBYjy6ofpCD2iG5CEoZ0iLQW0CnPI/RELfNslFW3QDB\nSKTcPUReEMT53QzzGVHWZdh+DzmL2Tes5om0CrDmMPqTyTOomxyW9QBZnSrE\nn8GwTqVJ3fXMVcx97H00gRz6h+Ek/eBhpY4ZBg6IVMs2wxFIyDMTmpZfnO7B\n57t32oCdc9yaq86JNwV9qjiLtyidKd28WRJCtkRJsncX9+bRWc21pxz6sQ5J\nEcRosofMfc5ghbbUmLJeUDND/8XbTdQYmlsa33USfpVIW8ieh/9H+tEO5KHi\nQsuu\r\n=MNrM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.0-rc.2_1526473180812_0.25884425797828103","host":"s3://npm-registry-packages"}},"6.0.0-rc.3":{"name":"@nrwl/nx","version":"6.0.0-rc.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.0-rc.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"a9d76194afb18ce937c4e0f5e2ac3531ff0c6eb6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.0-rc.3.tgz","fileCount":58,"integrity":"sha512-x6IedNwwixIGj+QeNp7EQm4Ky59VDcf73jJjkoFJAt6R/l+VJrbKRBEUvZ2VovDG/ecbuwmZhCIqE0xlYjAp2Q==","signatures":[{"sig":"MEUCIGZxF2W7FqS2+Jjx5czpiDCWcMT1ZV26498Beog9whgNAiEAl5h1LOLrPOOgVuf7IbijK/GonNIf3Ht6cQdv9ChBV4c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194086,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/NeVCRA9TVsSAnZWagAAoXQP/1CQGGB27U4mgcSs7HVw\n8TLMTdwJ93fpkRzUVIK/rWxDYb6HNfj3uS73sqcwgOmxG89LXbUdIeyZYzpJ\njrpNVUHLLJAQEVl/QfStLUZpC1DoJLoeIoDJ7NLRb2xF5JFMJzzRoNmL4CMG\nma46N/G+WyS51FQo5FTd449Wf+4RqVmdoFainXzuAPpplICA2915CiprIViV\n+vEqJzL1EhoPRimQQk9vaH/RwJONgAOml1SCWCII5DHaURgLzKWe3fiS9kiN\nXuqAvS3uWXamXEcL6dipvm3DGBNUzSG8Fu8Kc4BvM/ks+5nA71dOQUhWQoWI\n0vL3b/X4MOQvaH24dbh8cKpk4rDSYid4D8XZ6A7a3apIYPA066dRvnJThLSh\nG/qciJctum7vH6/fmICDtJpcoVDPxa24TUsQcwjSee70WMc0SHsQJ5AgVlEv\nEyWmNlSNfU3SYZs43djt7VNya62B01ZWpR4rh1auSUtvrhtaoi4BueGsajOF\neYHQc4Yd49AIxMR5fQ65zks4zOXlTgN+lkvLJ3hueQJfncFIjXQYjEDyzwHE\nIv/2zQ/WAVNqT5HfDVOP3gzevHpPCMbvAFr9/MNLGkJBs3G30tySEZJ+h7BL\nECYM/FqvruE1C5SamzKYIxCLF3hIUIajxV8n56QHptYV6nCeCOsX7OlVf6Qz\nPVaw\r\n=yo2C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.0-rc.3_1526519701134_0.1494951938284801","host":"s3://npm-registry-packages"}},"6.0.0-rc.4":{"name":"@nrwl/nx","version":"6.0.0-rc.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.0-rc.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"8999d9d97066f3bb37d881e4fd3508c651e42dfc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.0-rc.4.tgz","fileCount":58,"integrity":"sha512-UYCzoI6LCQNvtyEyR+b8gM18rqoVl59UyZVK4WNVL0rxMeleNyrJzRh4jubXX2AdzEUVBhi6hFER0n/5CDnvng==","signatures":[{"sig":"MEUCIAeDcR2FImbUtZmT918y2JMEBeq1gV2b6/U70xuCo55nAiEA2wqRQdBAaOD7CW8L7dVUdTOCS6sZ+0amBc0vpGQ4nrw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194086,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/xlZCRA9TVsSAnZWagAAtGEP/1QaEsdVzQp9d1A/GG4q\nhA9ZzUtSzfJ4m9dotewkU+iXi9N4kpo3WDL30m6XqlhlgzWLbyhO4c5SFcbE\nqbcEFKK+91G3eTmX9He7Wigngm+fjjUEtfKR4EM0OdN/sreZCAVoAuf2XMRe\n3VtsJi7w4N/KIiE4jhWcNZ5EpROWVmaPg1/blD2GfzTSDY3n3vBgxIrfHjQA\nFhW2mQblOSMHn0FcPx2mzoBWeAP6jnK8hbv6aXBLE661mPrXmoDj6XyT7xl2\nzS/UUMrshUyeLoZYZal9sN9g0ZfcXnJsoX8oDGHKqcICLyIvUL3wWIoYDQqZ\nJGUy/KfxQr+NW25kp4W+WX1LT3p2J4ABDwQWRF9LWOr0sP71Ep71zDVM6IiG\nI0P4Iplnf98SBP2mTv3l2NAra7MPlXVeiCRgyC3O6H2FqlL2t8JZ7w+Lnm+W\nUmRl2zigu9Fk9vnXLQKrlKJh3ws6D1JdNNP9KiKMPl4J2TIX+L+mjLVfn/b8\nscugfvUsffXSsu1o71Pyf5rCI6rk5eua8dz3qUDNp2xh3mRa8lfxmG0xwoEr\nHW2rIzIslzlL91HWIS0rSI6A1wV2Wr/Llkyy7mOkPk+z0b/iK8tS0UTkxjZH\nlv5sbwsrdvf7imRA47WwKMne1WEXL3c22Ccqs0PFxLYMokH7EQVW52N6c56z\n2qFG\r\n=oy8w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.0-rc.4_1526667609119_0.17425259494297296","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"@nrwl/nx","version":"6.0.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"1789c3c1e53890eb691c71604e4fd700657dee27","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.0.tgz","fileCount":58,"integrity":"sha512-W1EgrZK/qrDC0sT/StxtFXlrxYFSc02/oXIMvwqkdewiCftG/adHxOo68fN2t4eqOZ/eBDhWef4p+bqJMRaXcQ==","signatures":[{"sig":"MEQCIBXtzbrsksVva2zQOYYSqFHrs3V5eAwNkpSxb1Md2Af6AiBqq44C29F1kYVMSe+HbC5qZt3kwe9WSNDwbr98Dv9uIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194081,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBByZCRA9TVsSAnZWagAA7dcP/RjNE1zv1kLghjafImL1\nw9xs0s3HcXOe+xU1c3EafpoOHN95bCZl1fKWeEGFv2Ist1bJM2QDy3skfU3j\npE9fIY6jZ4lgRps0URD+dflpHLreZPfzli6rZAh/fmyobTtFKYXQtnUDTdsM\ndswFDXchxmf70/YuA7hYQOrRkbsDfLOg0vjwTjJMWF0rB+6TIHNY9b1DNxcV\n0O+lzPSoAC+4hnmZbpQ1tPHg9e3FbGBOTQqgL+OcOhbFpV1Y+GfQE5IlSN4B\n+SJnhdMb8HawxTSpkfi9MTWE5K5K+2g1+W5AfyFSn7R/j0gIVodTfIwXYWGE\n70uQM0p+LpoDhaaTKNvozxvFMu6ZincYJqLSzddK1USdXkcfdvCze5LDFaJb\nVOEAJ9uV5Vy2s6wEDlucwJ8aRVwsff5o33eXgGCeQfTiu4UzBeZZWmpkf3z0\n1sM2UzegN5UEsfe46kg5GDD7uVouM4AkzyEZ17hgvN5yMeifIrlbpoCMDiCs\nkTaZwlCeGF38AAS1dlZS8jRCxRtNx4Q9+/iFeBjVz+m1JHW/y0IYKwakNagY\nciw9H31r752h6QN3tuDPbYMIGqB+jH7qBL9wq9hLPVdX3E78fEVJXmQSSrDP\n3MNpc4YaoDFtlikHdGefhT8ltNpRzK71Q3MrBTDKipVwii8P6Tf0k4shLsDh\n10hb\r\n=5H/b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.0_1526996120990_0.600416600642373","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"@nrwl/nx","version":"6.0.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"1a1caa928f431f9269d8f691ad4e3e66a2e5244a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.1.tgz","fileCount":58,"integrity":"sha512-yOhzGA4FxdI4PsP0uc8jVmHYwug5f4AuUKuG5srk/yhVvXkxqUXPCXRv4EuTLp73GOGFcN/iJKT5GSzbNHIc2Q==","signatures":[{"sig":"MEUCIQDPiAMp9+a6US+xMzP6hW7SjrOPkwCDlqARHggwbwzYYgIgHkHPrMzG/o5kV/ISq9N1MQx+3Ub/3HHjeaDXvnGx8O4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194081,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBCN8CRA9TVsSAnZWagAAOJ0P/30cofRT7NuFpLvvVkVI\n8M/te4wdQVO6PVqWXjrbhnLOgkNuKIkntIrFoJyDVWbcFushQM9NMoCbbsku\n2EVlm4HcqoTMEk3b79tbt76kjTyVRPdKjU0GxYRQz8uGHVMeXewQ8w4uOzcy\niJRwN7ERMm75nQpok9gMkIm5NPS7tp+6BF8PyyVG+agAueN1qW0rLe6BhTom\nr5rd1Jjzg/453kGYqf1MsCSBJIfBCwS95O2sD0tZW9rvvQJfQKVkZnFnSkI+\nO9FokPJMSZhEOd6gwed+EGKv5IRsGXf3aCVSKrQBuDfo5LptHwiglFzJIZha\n95A2xgBmQvoQwkZgHVhQyAu8OAfC49VjjNoaVbfaslX4rZH4tJpJKeurzWVs\nh7KUotHOG3jKtJa92XcDkG1pciJuzD/EslX41brquuiXKfDHy8/xFMvHwukO\nBQ0Z/e7CA/Tznylm8zY7ze6D0wq/okjFWRDIiorF09p4w+bg8YshXoYyG8fF\nI+4ZFoxjbbmgVh67XKwTgrStlFZfvBD2LB7iPHXHKD4fwAfh8NQMGJcbHEQ8\nTMj5Fcob1hcNkOUMpFRh7wsM4lehO2CYlhcfj1BcDxMtjgHyjYaTxajQyjI2\nBzaLxwI/tInOCSxNygkq6AQ6WPG8ApHSF9Qmoo5SnXZlDFKsuJ0Me9lyH9r9\nRQDs\r\n=9Mze\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.1_1526997884341_0.764331503820312","host":"s3://npm-registry-packages"}},"6.0.2":{"name":"@nrwl/nx","version":"6.0.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"c1f85560d9733af068c86d41ade5f8d8c9db5b27","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.2.tgz","fileCount":58,"integrity":"sha512-WLezA5RLVolr7hxojMINhNlxKU5q/PwXYcl7ApYOGfF3Qb889hBOyyUWlXu+2uIEkmbiv3PMjv0HPV06QceHlw==","signatures":[{"sig":"MEYCIQCJ8DN3H9knu6IR+61oRhcI44o2DO7k0jV7HcF0pus7EgIhAPDu4eG+VMBMj0m8TWoKbFkPJWUMhEzWQ5HT7HNbGGvZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194081,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBEWnCRA9TVsSAnZWagAAGx0P/1GvQsx4JwZJV3hrEtVV\nTZUIVsG8GbPtmUyTtBufKoN9lrYUx+KWbBNKYBNKED6fYOens7MTVz4Zqr3U\n7flWI+zRF7S3ol8lDiItr9F2/Esw1RbFPrx7Uc7vTrg1195MrEgSNbWynmTG\nvRRWfKv0Mi49RhIPAV1Q6TKJ6S/QLx5NqjaMhrbqMwBCOBNm51YkErjeKnAB\n8vMkVKgiACq13k9AuwWc9cTqda3bJNk78yJoRIu06jgNhYnHPaaFFYzJsOvR\ne3gQCvai+QZaekqFTa/vpDb/PvEvaRHNXK7S7Cx5oxPj18Fsru7tNYsV3ysH\n2HEiL5ehzxoagbfFLLq0o3qEDH/b6QEhU4L6GlYQocL2hkXIciEfg/4Xjjut\npx4wtmVcgy0ZyQzXh2znd8kpKqzwP4PFNsWFoIsH+db4UTfkcMwkuVY5fX79\nOSlWPw/hCnMjc1ceprBEcYWfVLVVza2ZJOyvuQjRNM8P2GE1rrBEDYF292Df\nSwf0h7hqOeFwlGPoYMUpQpIQNyjQ58+lWafheqTDoXTcLZShoq2Yow9BSwce\n860XluiirkoC0YYHOQb/xfGxK6iEwv4Yt+nyp9ElQzAdXdGIG0m/SDiSXU1q\nJYHu5SC0K9qmydNp/L+aYkPCklLRDG/xnHwDiQduO5BCg1s/PhIK8oIhoeIc\n1ULM\r\n=Q+SY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.2_1527006631401_0.041444978691236756","host":"s3://npm-registry-packages"}},"6.0.3":{"name":"@nrwl/nx","version":"6.0.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"fd5a65ad90fa36816f9eefabc41b5b562578a55d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.3.tgz","fileCount":58,"integrity":"sha512-e3otiEbwEt5/d/+GPjs7TXq1kEWFJiBlY1wE4dqU8SB+ucBt2gFJeNGqai0lAnCH2OgPiRfIo8kyD/9kZIqqCQ==","signatures":[{"sig":"MEUCIQC4gI5zVNCbs6tSVLKXiBOy/jW1QhI3Hxc7/Kk0DQJfUQIgcBi8MGNdZUldUF5k3w1sonf858Ydks3DwsW6ff+117Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194081,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEGPvCRA9TVsSAnZWagAAjHQP/izisELqWMOZMBh8Yn6M\nIwicUUFo6ehFjZ84/v+OzdarkOiL1sT27cIf2i4DmUsEU2HMH+Whg/DtCt0U\nQdMREOunDPV7SbInLDd8G7vVx8R4VwPgQVluVA4PG0Tgxai6SrWgrtL5iHxc\n519zsNdT00vuyNOYl/0gUQmAwHM79yZnLHWOTLnI50g/okH1dkb+QyLafmNP\n4Y/D5yfCFBlENHEbsPCR02YCF6vv9nrRE7HXianN30GlkSEf9SObcMjrRTS1\nRrpTJsgUqulTOj8S7+1vZQ8melhOGAF9dTnL6yKF+uY4ZD4FhGDoATR6F51W\nrA81Q9NcqQRttAmn8jgi96w6QExNkKeLx5eSXmULfDxyQaonU4BTkc9gbjxa\n/rlgYsNp1r+W2xCNmQ2x6IQ/Fysah9oAqJXAH/TWBRBh9Djm88yfA1BGtDlY\nVMT5K586+ayRtDO1ocBnZ3TyjwOKitUedbluf6Y0Fy3+Ib7Zdz7otgnH02GN\nLwF2RpkKUCLeAPApX/mROKIYqjgMRH/eAQhd4/cHmIKPEla1eIAA9BX/3FYn\nWQVsuvEBi8+5mVJ2Xxitwcli6JNu9jZy1A31tWXulJbGtNeeh3Az5DaFE0HY\nGfkD0Q2vh9KcSOL+yKDv7f8rMqCmGOW83wOIuYGxeM7VacvdczcUxKoAcUqn\nLC9W\r\n=w8U1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"6.1.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.3_1527800814801_0.37021466913500367","host":"s3://npm-registry-packages"}},"6.0.4-beta.1":{"name":"@nrwl/nx","version":"6.0.4-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.4-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"e7235b4c5031d62cf03bbdc5259035dc91d8d10e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.4-beta.1.tgz","fileCount":58,"integrity":"sha512-mlL9K7Mr5QCfSWE3VjfvIzAWd9SnoWrQQgZD/Y451TVNmHc8Szz1KiLS35aVt+3AU0d3sLCKn+uvzWmELjyTYA==","signatures":[{"sig":"MEUCIQDqb6UNfg7V02MqJWl5+RS40zpBOzLWC/0MX4mCQG4SIgIgOfja6EtmExccyc6tZJs5sIDukomD1IkuSYWcCZ6U9A0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194088,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEHiHCRA9TVsSAnZWagAACcgQAIwHj3HLTmz9wa9KVF0d\nw3DWgIV6yRKnypYWbHgEnuA1QfuFDvG548uRhFc6l7EMacDQNxwhj5zxYHiw\nMO5EBN6XN3fU+YdtBWgddWHjDsowzlS/NNjbJ7u9Z38O1BsdAGnma1LtviTv\nHBkLEfvNefvjo/4ZusXxY4v+i6cMuM5iAQa0ciaPiqQ1xAutxnF8G/dAITKS\npIcFZM0hqgMX+txXTqZxFd6dujImSkqglZwJDXHiem8YwNf4/t2UCWiIah5p\nUbG0SqK/gGHrjZoxR9kZ4W1mb8Mkn2BUe0eVXQ+cSP62g+VDrqUo74jVIbme\nLq7S6Ll4QKWOuqRxa3n5FlOh0eobdDoasLFIyT/s9pZUyu/FXQC2d9+9c/4R\nQ4dijOXKZ/j25lSBwn+oa0vfFcjrEur24/njX70YpLHprAvl6S0lNx2QP1Cf\naHW2rxiAP63pgf/ptyJgUja9LNKAjCLH12Wk6HrpuDOQelb6DjNGs5tEjq0i\nCk42aGhTbu9sDKPWnq66+dVAAUgK0AKxwgMmWCuegxrsn7LRQ5IciHH+JxHs\n+b3Y0fX6e8zfbbP5/iM1qTQeqYnFGz0r6qDezSMh81Xupi9yMlYPZvwnNTCJ\nrOCDea+8sILfJ3kc5bo6GgYBtlqWqM2mgOIGH0DXO6+NUlOiFWW9y8LN2f4W\n+V9b\r\n=Vl4e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.1.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.4-beta.1_1527806086921_0.8926530937414132","host":"s3://npm-registry-packages"}},"6.0.4":{"name":"@nrwl/nx","version":"6.0.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.0.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"4541bd3130dda1bb1ef9a44a6ff03cf96e8f9b59","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.0.4.tgz","fileCount":58,"integrity":"sha512-o4+F0y4O1xgYFZy8QJI0ssFPHDK/vm9WWoW/yNdvamLJlDFhtFwWLVIt9iZHKEYtHHCVTIFhWLqD4S4a4GsAXg==","signatures":[{"sig":"MEQCICmxBXeFW/3ubYgxIbTkNEIf5A7RuN3jMN7SAyehxk1+AiADidZ6DDlU44DXlW8QvYZ6uVRsqG6d53K5el2amUiqQA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194081,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEINECRA9TVsSAnZWagAAH8UP/2Qnu2/LNf6liaqEU7hi\n/QZGHlQfyCLiLcg3Dn1UEAjDSZ28b5bZlK6nfgjE/JhNVZMrkCsuDUzDFnua\n5dhE18F2UFK0S7dKu6p/ULVjMtGIZYEMu7SrDWgU2OMj4ma3ES8kl9Tl/trU\nEcJUpMtPlU6SroX+hvYHMXSmp0zO0ZIZigDm61kT75flq/RJR2MfXvZUxL0U\nLrFaeoCcLRrPEZ9Xcrq177xflLjNRiEbegh3IBDGXaOhmdFshiEsh74S+pti\nh+b8hbBOf6umSLbGeiiClPw3nAcHpqYK3kdY4qHPlOJbAuN6OdsiwxNOqBz9\n5PEMhMo5N35ch3uIiAXpX/emy06XrRK24m/0D8qxHePTHzWobKzPooP050Wm\nOIONBDY8OPkZsd1hzs8DT3JpTB98NXnTJGEtR4CYwuOzNU6jh/0dVu8jwHe5\nT62e3LfvsWrs3l+JW+pB2IP38k656nJ8UckXrjcyRtrSduknT8Kx1a7z9IyM\nFPPucpUIX1rYQYG4Bx6ZOVJpbLA+o0wdSCV1lgWhZXzxRLfgpHcT4426bFCf\nbDV55fYXi5MPqdbqj8gqKZpGEQmJf4fynZjr6eIxpYAXgmdYMvkoIANVbXfk\npcAUh/vjnfrUO/Tj6Oqwscd4DTQdUYEpqzjJ2Va6st6Fv6U8jv5Bi4HgVH9W\nSX2Q\r\n=JVHa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"6.1.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.0.4_1527808835745_0.815311607135174","host":"s3://npm-registry-packages"}},"6.1.0-beta.1":{"name":"@nrwl/nx","version":"6.1.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.1.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"641aaaf8d33ea1695284a3540f02c065a97d3a98","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.1.0-beta.1.tgz","fileCount":58,"integrity":"sha512-di2SbwmkBtKKeahCxqir0S1o8ehNxK5xMREGmi2aOti+EZCq5qCrOrKy7GJc6h7ZE1Hv4hTMCoKrC06IZfpH0w==","signatures":[{"sig":"MEQCIFo/gno/1k1H4Raco5UdtZAP/GxZsSOS3s//lUnwuup4AiAglFCIVpf3XBI33Mtd7/JyVyenswtrXgnjZ0i6burppQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194088,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHAf6CRA9TVsSAnZWagAAguUP/1GpC7nOCGIgSQ8iVLUZ\nenzgSIl2h8OxK4hpVMfbfXPB2DoiTOHv6olwg74GLvMnpHhhuasvKj5byUlJ\nOdt05JIS18hph3nObdxDmQTceihS5kxIdvUT32T57uF4OtS3YjNK58LVMqq4\nXk+6ITJK0qMxSGjP6dtiqmVIb+18B/JXt+mpZOwb5c/mrCz2zow//vMfiTPJ\nH2O9G1KGTx/MkYk6kz/1gA8MVGNxSGgq9gmbEGcKMFllkIZtiRS/YtS9Fo9a\ns5gy+y7Ye1Wvncv8CFaKOTP8/t8yZ774r5PHnUETBKWNA/qk7BQJRgcrK1mL\nUbh6VOt9SiDespJ39PLk6aOaPNKOfmBVr2XjxpuR8Rymyw4/jdzj+NIzcgAP\nMhlAM6tWkriZ6PpSLdO+F6X+gtj8lIDdae9QuwD6/R+C6iBpYUu4wSA8JJno\nJePo838h9AxsIuHMKXxrh84bELg7Nm0Fq1vEvk/k6TVGviEOEPCZsZLBRSVl\nKbNRnLBVf2zBgazSFQ3oXsxaJOTPes5SYI5v+oRv8xNYNg6Ez1Fe16QeroKH\nxxLVkjucci0K4k5KkL/qcP0YTiM7v6aMahM24i8TfIeqD9qntuplKJrCnhvk\nVWGIxl27AgSpRTaqAo2iw4b5W+efPTiIv54PmLdM7ziGTvfQbeiX9HjBq5+v\nIoid\r\n=nEZ3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.1.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.1.0-beta.1_1528563705666_0.10893733277948847","host":"s3://npm-registry-packages"}},"6.1.0-beta.2":{"name":"@nrwl/nx","version":"6.1.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.1.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"9ad469e3f70ec8b5af6bb34f4dcffb801ac8945e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.1.0-beta.2.tgz","fileCount":58,"integrity":"sha512-cZsCxO391Kyl3mamacIdntCLrcpda8kt+2MMDPrrOruI/7U2Mty+FGblztIPY3R73Iq8i6xYUFLeXy4zW4tmFA==","signatures":[{"sig":"MEQCIFX1DUdg0AUwThMPqoOvIfRlhGdvT+ukj7dFBvVBhnKVAiBJiogTeO6HVjHLlTlAXmEqXS4Qm86CNqVy2lJVi33Miw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194088,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHr9cCRA9TVsSAnZWagAAOyIP/1CqduVyFtOlqvzbKpSx\n311a32D6EijEIpzvz9AofuTwvjUO2MLeGSE9+QhrvU6kEqrJmOaEgVniHHws\nRCXcP8+OkxePGufwY0yAa+ev4a14kjpokIoVplG2snFu2vLlea7Y+M6Hr5Cw\nnNBvaE5Dp/YUhzy92aVWSUnmi/X448LsPYYbM9K+z5DZmtTlEZn1Th0h4uRi\nDKcwSKKNjdyfFyk4JAiVX5wCATE2xPJqSpxWJdNEGOFqxAramqAO79DtD0eI\nq0IVL64XIzdsStR7bDhM6URal6oLetJOvkx6toy8BOTIl0BhhoxTWtEhALHB\nQ2cAZWm9WSAdm+DuBQGnmTpWRYUmvvMBjRE+SVmQqCCNGQmjVcCsfKN+TPHB\n4FTw8zAAjUCvTEGJEJlY5aGdhk27y49Bo0JW6kIATvZ9nrAaViEK+58QM31W\nbNMgMtLr3saCJQAdvn5AYcoitTGbfVVSYYnKLGk2DpM1wYmr6FISMhQfjzo3\nHZjvkaB6JO4+0Gxdrhl6NHBVO7eJo3/hNQMjfBbQXHId1Ub6ylIVwS60lpto\neneFIwEds7DpcFD/uelhRBbkD3B8nloUA29DCF+2KpesiKJT1GTW4+279WP9\nC8rqPtNE9UInguAR35OkkkXyYyt31WpLGIqBmfutwil1gN+C3qq3Gnkl2BE9\nwq0K\r\n=rK9I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![npm version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n# Nrwl Extensions for Angular\n\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\">\n\nAn open source toolkit for enterprise Angular applications.\n\nNx is designed to help you create and build enterprise grade Angular applications. It provides an opinionated approach to application project structure and patterns.\n\n\n## Quick Start & Documentation\n\n[Watch a 5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n\n## Examples\n\n[nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries.\nCheck out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.1.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.1.0-beta.2_1528741724023_0.7428577229523259","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"@nrwl/nx","version":"6.1.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.1.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"a2bc3c94f6cc7529932702b4aa3e433b60377fa6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.1.0.tgz","fileCount":58,"integrity":"sha512-WjrdSlVKlQvezndjNUwl/YihpCOXSPvSIlujZeL3fH7Rtqzsu8qLMzbUpK89GZbG0Bu/KoehskvZufPmuKobDg==","signatures":[{"sig":"MEQCIDh7+S4dinUqZiwrAxMzvnihIA20XyYLia0s8YvoULZ5AiAr5qX4CukZ6/BRwB6tQnBKEwvva8oXu9pkXCQyLOE+qw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":197699,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbIpI3CRA9TVsSAnZWagAA2XsQAJdh6NgtQVwHS9EHfH8N\ni0ofYkmsqaAsBPCSeWLqsQleiSRS9TxXXrgAZtqXwtgvxu7xN8gyEF9j/vp2\ncEGhSQTXWHn02kLOzVtfboHeT791t6F5mS4GALPyXFH912+MA8uBdPjAbgUN\no11lxD8ge5ilvpp/YgBvevEO5ckvAr7ZLjC5vnuY3WQM8q4nrac7vbJ6eyc6\nxkVAgqP0OkmlYEDbeAOHz/3iom5uV3i56YJgbcIwskQ+B75SM5DzulZrnb6i\nnG4lRUvOJ6RoykK05f4odcOBUL16l6iabH06mGTuT3KIrr36SIYhzcSS5veY\nJD1FphbDwpgtAjK7DEKTGyVAHHfQoeiDkx+jRwPQQH/0va+lCDjJCAzMfaj2\nXNRKuZFlm3wfMbk23RyEG8OkzZsiGqPpWwRiRf85qsZOIjsv7su7cTHiQaju\nxA37pkwYwZXJGzYQYuPqpxpZulGRUQv8/nGPYc+fdKarkSfdb8HEbfCARSaT\nZjL7EHlf7Vo9742/qeC7RYZEzzaPhzSh09WE9+9FdzZoGb7hVCcTQMujSrCZ\nFhEeLf2Qi+xFs/0JKgadvhAxO0OwlBCcd9UkbqVGY7huOBaqJV9ntoL34VCO\nsT41N2G83OX3yRfVXALL4qRaOTV3e3mxtQEzWYZ+BpOUK2fFJKvalLmsoytq\nXEIf\r\n=5AdS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"6.1.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.1.0_1528992301814_0.2101498881915682","host":"s3://npm-registry-packages"}},"6.1.1":{"name":"@nrwl/nx","version":"6.1.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.1.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"0b7436d814bb6cf66c2edd0874c559b8fbf9b48a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.1.1.tgz","fileCount":58,"integrity":"sha512-9YZrU/tpBYrKPiqE3w1h/7viFtxS8UFpW7lOp5DVgsNCXXM14W+KIw8SLnvhRdFssuWzF2eWKaJw8MKexuUNnw==","signatures":[{"sig":"MEUCIAINocMypRL2i/mQGMPdbSAiaW2/Uw89TKOlzvRvxrpUAiEA37IJBmkbr08wdNJrhWWPhbamTLvj6iiXlth7QbCBA3k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":197699,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbUgg5CRA9TVsSAnZWagAAcR8P/3MOXIa4PSouUOcP5u80\nwGJHgNcDd4/Xv/x2cI+LgKB3WJC26bztAUVLoymD49LZ9v4DQUOMLNnxqyv6\nIQZhC8BvXHQuIHyEe32gtYMOH/Xvh5TDcfUchdLxGgjJqGjNQeVG7Rs58ehp\nU1SNnWV+YklrTB4x++sU0ERH7IJ/1o7MwEz13kKzipJ70cai/q0ggjQ8wpGm\nHR7MqQgMssT/hAPDcySAoHSfdNIvnIJ8W5AMVF3B6BfVth40KVteFq1aiPO+\nlzp4qwRoTECNgERLPvrJb1D02I2bdbMQnKIg5ZPRi8bsf8I2MJe9So+zyc9T\nOfdcrLzX+JtlOAQpOagixAUab27mOBDw24i99LmhbB7zgi5xLUStGh6pNo8v\na2gLVkL8jp9ucMAUm0ASPJSKXFAgIyHD07im3NDQsYFWDeKUi2+v7tOEG2RF\nwZz9gnd7CblE0iNstoCtCfiWA/Ji50yPQE9ZylpLhzUT17uFeTXPKCV+Kn3B\n153iNfmKoqGUXi/+Z8hrMutFkSZpw6tXozZIBjH73X56VmjJd8oyCzPI7GXR\nujCW3aOKd1GJ/9ULKBGkdSXObnvL4MEnzeK1vlOPPDhk/yVXSmvspGwb06wp\nYCpiJHHx0Gxv/4ixv7DCYYElyPEQ6Yfw/hMOXKgpTqogH1UnqnRFMVtCMPHM\nD+LW\r\n=n+8R\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"6.1.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.1.1_1532102713521_0.5395785941455362","host":"s3://npm-registry-packages"}},"6.2.0-beta.2":{"name":"@nrwl/nx","version":"6.2.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.2.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"be5cf55aa5ff11be80c83441ef5655e3ac1061c8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.2.0-beta.2.tgz","fileCount":44,"integrity":"sha512-R0zoNUvNYo4CZ1jFrj/eeBLlp5j6KID5o17Ol0o0zTNGSPCBy3AwTpDg9BL4J6XmeEOiUzT1w03nn2+dVpbOXA==","signatures":[{"sig":"MEUCICkqM3ePiyjmL/PX/zJEYCo1n7r9IWeII0n3rISlv+BHAiEAo7nxgwn9yBaJvwOHHCF6q8hXQ6SzS8dPyCciJsesfuw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbY0zbCRA9TVsSAnZWagAAo7YQAIgvPY5EV/q3vhSa3OO+\nSLP0XA/a4bCefsJhB7bS0jqR68EfztysEEDg9HvH0iZ+QsMcgrm2Kv+c8iQ0\nGB6iGVffj6+ZFDE1inwxK/Nby3bjalsD39d/4CoSHMooX2DimA9sX+559Ucg\nkrAqJ+i5c2SGpRhXRo+jMFCERjfkV2+EL8pwPIS63RJ2iPuMOaTwG240HMc7\nN9xPmERYzLDuNV1iy+/gc7MinlkDOi0d6n0UDmKCnBaKECdTKaepKz4N8gBX\noF0vivRonerrKebS3E6JpaRQFrH7YkoFWsbeyDoZ5NY/oG51ZJM3+UlZmYKC\nJcUzMMEmikXsc5+ODNWPJxXkgrJO931xMGm55iSWkYNKD3XYS8lVpjH3hDHG\nkwkckjnlWPdqAhaQ3wKx3VvCp+EScHEJWkdu5L8k3/aOHlobA8PUO5afcaOn\nbQTJq2649x764cHzOWzBI+2C1TTtKO3JFtZktW0eszGxegSfvBoEb1xQEDa2\n+Sd8ad2m/psIzxN2WtBSwbHnqgeT1DSfbWQ1tcYfKAbEZPfDMNXgjrgETJe4\nW4KmDTQd42Bup7moLaT5YANVJkhNlKhN5PKDsmqq/xcaViqofK5R5v/50sYe\n2/HtoWXd5vJUXr/kCiMLeP5qBbfXEaV5HMo82Jkblc700dvxY8RZ3PqRkEHg\nLQ4s\r\n=fOgg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" align=\"center\">\n\n<p align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n\n</p>\n\n<hr>\n\n\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.2.0-beta.2_1533234394568_0.6488571960553828","host":"s3://npm-registry-packages"}},"6.2.0-beta.3":{"name":"@nrwl/nx","version":"6.2.0-beta.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.2.0-beta.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"580ae0352d3dc349168c1d65a4d0899849f5ac1c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.2.0-beta.3.tgz","fileCount":44,"integrity":"sha512-hiL/MRXMFT3PmhQ8hRkDu2y2BdCseaMdQQmw23V4WVnvZV/RH4a057uwffaRc+HPOxYVof3EGs/CEUXUKQ0alw==","signatures":[{"sig":"MEUCIHYL7tp2zWZqc4+zlCI1jjKHSAFL7qQpCF25W/A5ajlzAiEA0WUK0BtwXX4Zd4guIPYG5ZSCxIuAfk/+Tx1GKSjU08k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbY1WQCRA9TVsSAnZWagAAnZAP/i9ZZwx5EDgeICstwvlx\nS11XcdgF3AHn5hRMyfRVnDrtwzNw6s9cpv28dvyjAkaldTRffKIADOEZ9ihz\n1+k4mMB8r1TMXuyoxOesSvRHwoRlZ7QoJrRa1Mt+A0u/s5CRf6+Aj/6bJ2L/\nXJmdyocXqjqz5XbUtJTCGjnicsPWBzv2AGfkdH7QvKAZ+DKUEjuZVImJmCX7\nAEqR7Y3mo7EyJIqSsM/Z6Nfkhl1kU8wqoHA+eSZ4g42RPg3F2Up1A+/ZeDpB\nMm0/uoiQUYBivL0IQrSr6dG4XGzxAw2L9+imuPz8/B94UQqEz/oCoKywtpqO\n/+5mpfTyIaPi9/FlfwI8tUXjeduVfAi3Z0QMZ8LwBpB1QCw2VArEX/zp8M4t\noIvqPpOlidsQDDQsnM0V5m+P0fGpgMv8Q36dQwPtvUi76o+2ELsdyW9twerv\n2Nka/7iHLKvifVMG9Aqf+Aie6PrYFxkyRIvlrDTcqoApEX/ETXVbN/PL5p/g\nQl2H+dVgWzyBVaT1HdT5pA+cZcrgHrxZmcyL3B6xyEGw3eVjpc7ncHOuVCVG\nOpfve+6LqK6cXp2J/aJbvzn2duMDM+R1POqvvzp9autqn8qQS8ueCZFuDgWV\nW7/F1eRrHnrdjEMz4JpIjhks0JKRr7OYKVZp3NkaO/oSb/InPFFKBxZGj9yL\nCN2o\r\n=05Nh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" align=\"center\">\n\n<p align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n\n</p>\n\n<hr>\n\n\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.2.0-beta.3_1533236623210_0.8286391496110173","host":"s3://npm-registry-packages"}},"6.2.0-beta.4":{"name":"@nrwl/nx","version":"6.2.0-beta.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.2.0-beta.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"327e511eaa8bd2a214d30c96ac66f863f297da9e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.2.0-beta.4.tgz","fileCount":44,"integrity":"sha512-N6wmWjzaCGk8XiyIecXBom/nd6cGYN4fmcYoCAvkZGC+DcODbWX7PZjHZL71SPaLIXvfdgQWJ7nqsgeY3/iItg==","signatures":[{"sig":"MEQCIBh31+vpd1XHs6t3t/3S3Ga8uVq27tTDyMUcspFPKjoMAiBjLz1F2WKg2GOX5PWWfGUjj4LMFGOftGK18Pw3uQ8pbQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbY1zRCRA9TVsSAnZWagAA8DgQAIxvkyYMhK2B1p43Y75i\nI58FLvmaBrL2Hkpff7cO6FMf9T2WofRbKcAlxFJQ/mST9zI6ZMjTllx00G60\nJpqaRlsFzEwea0kJSsB7dUqcPcxzCspRouOpug/ip5hzb4sHlCFRgBkGuKja\ncIa6g9AUpfQz8SCvHaP6Kc9/WaVXx0OOfizdLMlNngU10yeFBq/U6i1OCV1+\nYzYl+ImaP3v2uBUbZ0dwuhrMnPcX5m9M/W0Bp5mJ972X0hOFr+hX7m+bfbLG\nVx36l28o3M06O6hjPUZ4yUHFoWK9sMtZoLSxPRpog80FBk0B9EraCUNxK9MU\nmeqWyA4daj0cJMRh83Icc6J/4rYSUpMJyQXEzupyRo7NkfysA0Q1MpFWp9q/\nnrh3GuK0bfSnp3SNaCk+Q7ZZ1gP3sw/+PdlnU5cl5dB+WkvhZCOkbhnB7oBY\nF0s6UFGG5CCMhud6JTRaqbgSBfg7XJC/UwPjttwppfH1wfFy2nUEx0gYAA/8\nNsafbw6ZCv6NTuzCsD2/PjCOMWNp9B/+gawicLbZJDj1lGcV06QQiZhn2p4Z\nRW6ztCeHemC+XAY8bZwUnD9e5ryaTSf2YoawQ2ahCQvqchCxmt/BKC+bBAOQ\nNTaAeIy7AE9h5Mi5gd0t+LGHBfsveRyoWXd1hfuthKcvfnAKLjVfIltEZbSX\ngUhX\r\n=aWcO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" align=\"center\">\n\n<p align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n\n</p>\n\n<hr>\n\n\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.2.0-beta.4_1533238481587_0.10961559496913109","host":"s3://npm-registry-packages"}},"6.2.0-beta.5":{"name":"@nrwl/nx","version":"6.2.0-beta.5","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.2.0-beta.5","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"d6c1711abd556a6208701f748929b52daaa96e0a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.2.0-beta.5.tgz","fileCount":44,"integrity":"sha512-flxOU3gO1KAzSXQ71ULFtNakNqsM9wETHYnxnggFCCakPPiKfvBETGMDA4gMqrXwa77JPqOMPhTlU3mL4TSi5A==","signatures":[{"sig":"MEQCIF84PzX0688xLOgSMYzJGInWyUdrG79LEHMwNxkzbY0PAiANIIM7EsCUcqdXuESJ6JJ9PR4f6/Fug8jwXTELnfXLZg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbZMRkCRA9TVsSAnZWagAAzwkP/0DuKemKQv+yoinkC47E\ntSMEZh1Q1yQA/Sl75xnqmSFahtt4r11kMpjPuH5T5SYj6KYjT+DinhKLMRAM\nKS6PxslxAq1U+GiuWl3rg47w87HPsv8fx+sOMdx/gJoZQ6pI1OXEFVDl7Xj6\nteWYCw+SRJYCPYyzWNLMqA5VkPdOQjbl1tier2ihYtCD4RvXFEdqfNHyBI6v\nonkMBgW4Ith7q8CkumcNpMehRtojnY/5xwD0xxDXwud2Pmx1slgKdn2eiIsC\nuuVP9yKd0LjnUiC6s4qPHgnjbmkNoONZnyexwRUfEYAKPtxXaurSv1FTis5Y\nv5VvAVG/8cRztECwYlHR/2m0mb5ge6j3xdu6Dbz20Z+NrFNSacfgFgAHvbmw\nxeBcDZTj4/L9p972y3TKvdeuO2cC2UPmis9cbyIrhEHJ7kAUcXnqSdjHSELI\nYJFvrSBb5XjQj6lqKitzYguJsFMELH6rfig4rJs6Me0281GpTfKfn77JIjGY\nhvapqgH8RjTFqjhDaFneG56M0n70u9ygKelFgMKle5sHqashRELgxgXlFfaS\nx2+3H8wI4n7pPzP+z2G4QkykUW23dg+IeXblCcqMZ0dBXJ+eAmoTnZ+1OHHb\n4nSv9OTIsudtoEU/dyrrAuku1ghLb8nJB5N4QzQUJFvRO3TAVhF6PkjYmi/l\nDa+F\r\n=dO0v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" align=\"center\">\n\n<p align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n\n</p>\n\n<hr>\n\n\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.2.0-beta.5_1533330531794_0.45745497268394564","host":"s3://npm-registry-packages"}},"6.2.0-beta.6":{"name":"@nrwl/nx","version":"6.2.0-beta.6","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.2.0-beta.6","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"b693f8661ddbfe95f3aeeaad9eef90c3141b0a73","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.2.0-beta.6.tgz","fileCount":44,"integrity":"sha512-6xH4VhEEbZF/OQLlnbt74xDW3ePPsY2UbccBjVkhriE7MIz8zxYaVR/mohBmckDnfh18n+68l+AeZCSCd/Jlrw==","signatures":[{"sig":"MEYCIQDbvQtLgH8Rm7cEfo0Fh9JkftwUGhKm+cy0O0FlgtV6hwIhAPbpbDmIAZ9eEMc1YEJcS75Od8CcQNHrDDNzJ8yHo/9o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaDV6CRA9TVsSAnZWagAAiz0QAIJkYYV/CHSnubd5n15e\n73JrLxGPqzKmYaQajcLerBwqacV1/n/U7DDSl+fKxv6R4WDSG3K7nuJqGZMg\npPCclgTspD8f0/tqEQSAdOtovZBkHmhL3bStk5B1pNv+JIaKak+JDLG3MVjS\n/dCx9XlTWzCToQDHxtsATY0gT3HfVAqvPMGc28qtpMm9gysqxnvfBfmm0FsI\nzWzJXFycnLaqMG33YFdBXkzu93CB6lmhZRnM4civ8oqRyAHCo4qdVD5ahlEh\n8LnjhAn3tqx0rMGhIhj6P52VAS9m0phIjCpDsFkdTYc5oXzBYmUAKZIVKNAo\nvny4IE5oq0dd83Xrt/sGLr2IykIIXMLIbqDvkLXH0Lx5r61rhScXZs0LtGZ8\nmn1RVp1/xWYqx57RdcKlax2y5X1vD5MfCyFPcx+xsaYI0fvC2+ZTRuxpBwjy\nomK9RqvlPa0sOarSq05YqzYs4oBVuhoVQkajA4nWeMHV7yX2VEyU95vvwj7+\nsJ8No28HLavUhel/wbaSNibs9dd84T8KLs+2aQhWm0jy81PPyhP/K2tiiGmj\n61LDxU3OxNRdPwq8ytNuFRp92aXcTaufFr3JGySkqDB5RlM2f/uYxUyx3lTF\nGiIO45FLkVIouTiINRrTzNddnJI8gcGlFdX/8pLzvnD/lJtCb5ojkQNblUFm\nm5ag\r\n=9inJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" align=\"center\">\n\n<p align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n\n</p>\n\n<hr>\n\n\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.2.0-beta.6_1533556090336_0.1534194143760308","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"@nrwl/nx","version":"6.2.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.2.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"7737846a5d03bc25e0d9cd418e9bde11697c85ad","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.2.0.tgz","fileCount":44,"integrity":"sha512-iMrRVk57GIPFTjVM/PXsoLve6PozY76QoLvzZcZ5uLnR0u+Hc7qlgRGyZMPxephngCvpkyvZzwhvF/nuWWVG1Q==","signatures":[{"sig":"MEQCIB46WyAXPJ77rd0fuflUYU38yWwg2IdbPa6dU26Teu0LAiAyhk7ebWWB5qMPDVJ27AVAhEI2Dj7XA5X3wHukfLV0uw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaI3dCRA9TVsSAnZWagAAaD8P/jPATAQBsyAh/3yUUbVC\nF9NISganK83omSj6pTk8senvB7Z32KkH0zFlhlcKvZUqTkiRl0sifmc/5SJD\nxBO/Ls5hhD5x2akbKNvdQhRuP2J8heLSqevN+faN1wy9cmq5ILr6Is7MkNWi\ntGY1mOJVYGi1sKT+62xBE24dJcju+R9x17mWWn1IXyonfqd1e0bJfZsvrvIh\ny+xKOdyYW+J2EZAdehdNjxH7hCUemMnzoYBv+idZpRMFgfjWz9UQt3kDfrVK\nd0wY5fVdaTu1cjV2JTpe01il9GSuZCg2eb2rEYQ1g3iV667SSSGCUDx5oWIY\nLUvy/EXuWwmOJLvdcOHzPXlcW/s3xD01GCOGzCpxvv5thFecpu9dEBPpoG6X\nEmOOyjGzKvt0wRBztsk7mDlzUa19UXtG9P/udFs0WYafRo0vrK3n6uFQZX7B\ncyV4rO5iFdP5lY1o9qMsRfMYloxTDKjfLkqSlr3c+kICAfI06V7eK55luTjn\nIi7TM0kDuXFMdPuwfnDaQU9rSr23CFA3PBFBS86p4j8caeXgLd3dbhwYR1pu\nZiONLhvl+x9qhRCABgcTkD4AHt+SIzM7sxnmjije4/cBOCsjHzEDnkO7tbDz\nqi4KvBA1z3VvHUwjRMhlqY17myB0LsrEFTL0oY/AaqWxeofBjWDO3Dedeq/I\nZl/C\r\n=ivr/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.2.0_1533578717304_0.4777417580998582","host":"s3://npm-registry-packages"}},"6.2.1-beta.1":{"name":"@nrwl/nx","version":"6.2.1-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.2.1-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"2c30fa2fd702cba3dfa62874c50a6da2a207b749","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.2.1-beta.1.tgz","fileCount":44,"integrity":"sha512-ordEMDQFj564OkZecKmZ3yoijiIss4+fMdjmDwQCp3nzsQRyC5MGrz9xJD+n20mKDE3iaqJuHr/aT/zB7/CQvg==","signatures":[{"sig":"MEUCID/8WkVqfzJQzTQ7eKS4KIEKkO1c8eVXX2LYB7Fxx6kXAiEAlJTtmDS7YSflkdsWXelGfC+qXAwYzLcJqOYkizcc/C0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":402967,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbe/SXCRA9TVsSAnZWagAA0cgP/iUT7u4FmjPNcJHTQ+Mu\nvASqFl2PY4Z//Afq+4WvnNhHEboLqg9ZWdhEhLCQOYZUhqP3KrE8gK43LtXS\nzJQjQ6l8l1o48nAm9EdAZBMP/jjyXucTHe8ixeqczgun+e3IaK0MNXy7TOtu\nWOkh8hDQXjQZwQGPa1AfTxgNChAv+tgCWH181CWmd7XN5MVK1souoT8nKSrH\nE0AJWWdaVzKYAlyJv/f+AwEp05n9XG4i9n1jdcxw8/PfHzntQmgpkwoOlm/k\nxhpouOhTcz0FZOeQ214wdi/0mJ0i7eB8pEpX4nLtmZ+S3dslskDeL3xgOQa6\nXJmdo4GTIfkgl4hD9tf7Ifoc1dnbzcB4Z2J854zF+eKrO1Oe4e3nx7LmBtaF\nU3VP2cNXjj0M0KW5VaU5g4qWyJvSvVqo3bAhLAzkvsONFGkSN9elNsI5LKEH\ne17TWhnwEZT4Vycl7SzYNOXQugVVEMwaYJKfXApeFGto/j4xZc2t8L6IADsI\nJgUHMZTN61HAVcE7wMyXKne3CsU3F/fa2hPrQe4TEp+2VtAVsF86IRo+/ZD7\nIJ394Q5t9WgcP9f69Z2il0wF4L1WcKP5+FpURlBHqCddhmYOqQXjaWYDJjhH\ne64qlH6cuS/SqLrOIrVsoI7kIhgxMXufFEAE2iE2W6ey20M3vJYHQ48LLVlT\nFi4c\r\n=p5FV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" align=\"center\">\n\n<p align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n\n</p>\n\n<hr>\n\n\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.2.1-beta.1_1534850198346_0.7945224855062953","host":"s3://npm-registry-packages"}},"6.2.1":{"name":"@nrwl/nx","version":"6.2.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.2.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"b75a5c35bab53675a89320e1d8d16f40b70e66d1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.2.1.tgz","fileCount":44,"integrity":"sha512-togSqNSXoDgq6r7wXbCw9+nMNgih4xngcc1EH9I5DXxCZVVFFyoQ2sbBwO8C6P2U2H8HaVPeYxWPLetI8j5lNQ==","signatures":[{"sig":"MEUCIQDSMxLhmndPOLKGieWdKPqeiVqyoMigNiCj9qG+zrSdQQIgRiDza+CRfxawQwfBmSl/UeVRTq1jvjd7ctDHuOZjXZk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":402960,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbfHD4CRA9TVsSAnZWagAAJW8P/3oHtVGcZVEtd7CfQIMb\n7QdnXp4nH6keZ2vgVbtbbIfehV9NRq+Mzk2wsK5dXTNm1urbx5LPs/S0EmbI\ncdUqVFN6aZbIXNdYY2bl6Lh03emx82kaVmotQ0VLDOaKePaoI9AfSeLoXSdY\nkGoAwbC7X46d07uyQG7t5gcnC4t8bkI/VImvlch6c7STQXo/gClVcMIyC/Uw\n+h1Z3F7ubkY/LKXyyRNgSKj9cYUQK3OpjImJ+9+xUnxhoO80jTkDnGiBwc5Q\ntZ5zAz6lfHSVFrSTF0NuFkPrWQh9xJPb0XmhKLMIXppGxkGwI2u9FvO3IKlU\nRr+Zi7wn9YJB7Dc8Y7YeO0fzazpPkSOnEnv78NrCcCt9q5ze62QfiDHqHgph\n1wnwguCjPXFvNe6uj6R3vum2r0EoUh92Z7Z60lZpGP0+ycX2F+AvFlQRtsS5\nzw/ZFXKy72hqLmIOP+psQgdECghy0pGIapGpFUzjTJHsaVlmrXW8oeCaUYDY\nkOn/inogiDZWEktFE14r13pxcZ7vrWUZXnM+EhAOAr8dir3BuHcnECq6NXEv\nPMoGmTlraVgFCU6ej6yrRMEfdwNfekHFWhiLSvYSbZHnwXZC1lKtf+g10Wi6\nuBzBzCOAIwtOR+Tr+IyKn5mpTH8FzdJ9KtmB+AtcBbhIS6xp3Deu5RSiI1+N\npXih\r\n=0Oac\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.2.1_1534882040029_0.06546662848679818","host":"s3://npm-registry-packages"}},"6.3.0-beta.1":{"name":"@nrwl/nx","version":"6.3.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.3.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"362301a0b058ec1eacf020e319649ec693733c7b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.3.0-beta.1.tgz","fileCount":44,"integrity":"sha512-FtTn/89Ts9FKiwHgFGzzJZ8rQQXC/rgZY8AKV03xVIyeJvVvh7r1RqBpN1+aURHqbFz9ZvhQJe7JoYD+4ni4yg==","signatures":[{"sig":"MEQCIC10WGruBh6XhoxTZeesu740DTF9aqA5tZIjFtc/FFSfAiAMi6bO7SrntE96/PvHol0FfWaBt8l8NGNQUnHNzstl5w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403086,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhzeFCRA9TVsSAnZWagAAsp0P/R8Zn2xK5yhw3TgzH3n9\nXp+gJq5CE4cDv3kYQjtRLFUWkoJQfOmzrMuN7Qyn/NUKXku2klrOY+lAZIzl\npzqk7/2lKoVu5Rbdh/UYTr+TioFP2V7Ipeh00C1sddEeZW5CVG5LqVskQTIL\n757FxbgeCnqf7HiBBFkluzmt8rk68XlRP0P6lbCGDTsQi0eO6mv4DxeQsZYm\no2Ds7c2GliN7S9qqN8iYi6nH4HQp9mx7gG8zrzGnvnXcPKdMRLBGpShJM7hJ\nY+39mj1UGcttMkcOdjxhRidqKpN7KgRJrkLa0tYI3iiLRbzpgd3jXl7pLdPq\nvzygBUnXUmOUgGZP44x61jMaQRckQqhQ3e5Pa0SynE6wjONmQ9sqEaDt4Kgf\n/EMzYXJDg/19DtNvm356Ipz0ZFa64JaEJoJA5YSTnMQ22lt1vO2+oCue6QFk\ncWWhueDn5aAwJpEUYkExKDASJgNOQx8kqmoUTy7C/GyFkkxCmCVlkQL9s0N8\n6MTLru0PlUvUIzng9drmYoRsSlbLDDXlaYy/ODMiSf4CHlkgA8H/GlYgKfmX\nI0xCUxVhqdavMzpFqQatLcwzaV0Ix/aR929Fx3SRoLfYcu3MbOpSTtf3MX6h\nVQcE4G0EYJH/cpmAYZtdmGYL+hIMcrGUpXJSJQqCkquPwROdUBmjM6CIgsJ9\nJngr\r\n=Q+bB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" align=\"center\">\n\n<p align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.3.0-beta.1_1535588228756_0.7397157485520627","host":"s3://npm-registry-packages"}},"6.3.0-beta.2":{"name":"@nrwl/nx","version":"6.3.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.3.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"153c465aaca031c4f7159e837608c1e0af9c886d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.3.0-beta.2.tgz","fileCount":44,"integrity":"sha512-SUBXHv1uzeLs+hevK5+D6/4UoWPVRq8cgkvvHgpwm1psV9qpFNjE+RDjPGAk2o5CrmdavpkgdoyJg6N251dcXA==","signatures":[{"sig":"MEYCIQDdR2okK+3xeUHtCc7X+MrVBjmbJsV1qMLXGBMLro8VvwIhALfSgUPPFVeByfV4konn3g/uojV/hOvKuBB2EMMO6MD5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403086,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbiA4XCRA9TVsSAnZWagAAJPwP/3HCQBn0Bgofsy98uafK\noeeX0mQi5j9gz0ykru6jQVANb49gy4XAQm5n9YQc3b1Fc5UzoSpkBfT45bIJ\nHSHtZ/VInM4YroY6UzfWgEm3PDcPE3CFC3V1XDxlts0fPBTp+obFJkN14sZ5\nZDH/m2NBRaWSXLiINvNxSXkyEovPfDeBp7KJfyZiv2sKlvL54s8DdKyQEa6W\nbnEnlQw9GpHAAzSzDSrzNFRo4ygRNgKHqrt9UIc7T7/QgGzSzHYYrY0F85xv\nUVlDO0GHkHxv2cnfIhrnPnAklEHIjaEnD5t6eg+1mJ3BjonPg9JFSR3wWLc1\nDVmAQwjgMl+Qny+SERP6keGqDsHdHf7WAXQBduKfXNa5x2EPG7WWPRTxpjFq\nKToOR7cJf1JWUVEwQIQHF5m36S6zMaGyGURoz8lvCGIKmrZiLPO/fcE66qL9\nGQZ4SfllUOBWxaZG3kbmbn5T9iv+OL6TIaX2H3PKrFYkqkcrB6PxdM4S54Iw\nISgHGHrqZ09v9FaSe4gmNoeb/LygKE2S5IIbd4BEKAgq2/qn+/42/ZdhFC/b\nZAH26hojyJeCjb7ZnFUvBmWF7jHxV254XAqeS7Nm9ASD6dHYXW568ZHY/zHs\n0mU1yiw9+fcZ/UJS8rOxQ/+KQjNMRKx9ZO8PYzfQZlNtzTx77Y2eckXV7VJ9\nTQdU\r\n=fYC8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" align=\"center\">\n\n<p align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.3.0-beta.2_1535643158394_0.892143366566791","host":"s3://npm-registry-packages"}},"6.3.0":{"name":"@nrwl/nx","version":"6.3.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.3.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"b372509b79346351adfff0a69bd19944b06210e6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.3.0.tgz","fileCount":44,"integrity":"sha512-OWGff2bI0eJMLuWWMCV28UIK0ZSgfr8KaA584nJBG24ZVT6Sw8voZ7U0ZUS2YTuUFH6bFIJdOHbX96KalH5tjA==","signatures":[{"sig":"MEQCIAQxnUjYjggo0LSwIBWJ5id9KGn7kreI0e4BB72lNpqqAiAOLqPQW5HSHQgiLmY781gfRBRXYWEiyjstb/Gbv8iDIA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403079,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbiFRtCRA9TVsSAnZWagAAmkgQAKBrnq/ozszsKc2O4ciV\n+fwfLZD9nUgiC3OmZrqT8OEXFz/p2oOhSr+PR2Ki4n4CHBs5byduR51Jy+7Q\nyg3uKmfDFUO83J/emvQ7zg90ScOOSiS8AdAjGKO3eB65ejeW3Ze4bLK8ehGx\nXmZCO0QTScEXrcb4I4j7Y15fENC9z3vvn8izh7aZfmDBzNYlipazH09Etjxx\nhkOW2GhjqEOEKWBAkJR7/LqLeSpG3nqAH7LmbIJX9gd7gOFehUJIra3ZtHm3\nMZ2sxm91dypb9kCGerDrbLQsE/0LXa/5P0TbrEKq63f6xWUXK/4NxhoEfVIl\n8zwnIrb+zCF9UkCRLa6UzhDoclGslHAhIZYwTF+FCdKq2HDNsbgFnlCFOHn8\neqdqA/68uI4VchCukyV4gmeOSDHpWEEq8+b6pGggaGmilBnM6e7i0yJj49V6\nSrUFcN1ml9QpFP+JKLSRfiTZlIwz4z0dYr+k3EOHWLmlW2fzZmHl81m1Tg4S\na/MGJypy9kth6yRcjCNwao40RAmQ/zork6cZE1xxm9892VVPF4gUrD86krTS\n6TabunCkL9dYJBgeEQsz2o3reXU8/hxrfONfllqjUOTEEaXLbgH+CEXSU//l\nlrJ4tyozhmzi8pzsAp3+ppzecWewxYp0K1C3xCOfPMeCIQXvHHca0Zza4qC8\nLVBq\r\n=ZowC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.3.0_1535661164970_0.8710455486250619","host":"s3://npm-registry-packages"}},"6.4.0-beta.1":{"name":"@nrwl/nx","version":"6.4.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.4.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"a1e3aefa242b4b628d4a5fe4192eca41d13d7770","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.4.0-beta.1.tgz","fileCount":44,"integrity":"sha512-ggmDNq4qZQf4MFbpQ/UkDUytC5gXl2qbbnD9+WNhaOECdUI9t0ovMkNGFS1CVTLtakSQJJmUtGV2Jyf/fSLbOA==","signatures":[{"sig":"MEYCIQDeLjXg22Jqpz2NlLzghc7Q+oy9G+sEaiZo0hBL5yCkeAIhAM9M1Sn0q5UJIlrh1JOII+ius8FnjmRV1X7Fo0GtWizW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403086,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbopxTCRA9TVsSAnZWagAAPAYP/RMsmDiYOYP1SbvtWX8s\nYzVCTozI6ZLYuyAYsmcGEJ0wAE0QNYjZhoRdt45FGN20pIUQBFOFoBW9+8bh\nzx7ILUQcBh5j0SRcGkrf2mjCks4C4MSBj6fvGyw1xlX4a6UeZpKX6E8E9Jm6\nohwDgF6O3TthPYDMA6N69vQXk/gX07Hs+QF7g/nviOsrNcCU8JLc/UgfrvSC\nbDI+UUOpvmU2X7bPaUfEestARbUG4jiBoI32Ugv6yiGiM/EQK5t79RDnWm2n\nj4AgUHF51dwkJHRXR6lDWoaILKhQW6Zd+ex8cCw/ot8TBKXeY5sySu8v/V4O\nNYSRmbWqAK97mOwVyqeBHbz/jPlnIuwomJMMcYnTXpVH4YCcGPv2iiZC/p2S\n6HfXHOHXMpyspJk0CLskfP5O8sXNf3WefBAleGIhlm285RdWIAd1T/dqJQES\nomVg+8NlfuWB/cbxxDdVlqF3Ucgfnqa6Puzvg1Xr2QvC8GGD986hBH6WDxRF\ng04X8DeHvyyyW8vfErgYv8+LUhdZwV03SpmhHBB/XYoCOeFVi9jltF1LZ6+9\npqLWS5n8PSa278aW4flnWl6LOphH/61q8wHTDJtpE1OmNiATAzFWd1Pf18CQ\nKQq0oFnu03HAqtVbO8DnEfJ2UEP5pTqjI5rk56aQf3YsbK7L6lYNF5FUd0rT\nzQQk\r\n=GoFe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" align=\"center\">\n\n<p align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"9.11.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.4.0-beta.1_1537383506704_0.34213307802297543","host":"s3://npm-registry-packages"}},"6.3.1":{"name":"@nrwl/nx","version":"6.3.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.3.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"e156393ebc1acf5e3a1589cda67fd36f9b66d3c6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.3.1.tgz","fileCount":44,"integrity":"sha512-jp0nCIFNdBeeyyxQPg74uy9QGtYsTVrX64HIOJD9G2LkIt32uktghvCYU2eBfn/0xInCxwcF8SRC6PTtrod3MQ==","signatures":[{"sig":"MEUCICOc+yBCuMC/lfcD8tE+4sbO/hZEgaTtFOAaUrmfSpjBAiEA3q45w6YaG8NyEE+XPl0/LcQbFA4BlHl/KwWD1xmFqb8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403079,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboqFXCRA9TVsSAnZWagAAM6oP/1jaar1ehjbQmSyEZJeD\n5n7HTzspzMx/tWbob/s+g9nItUpPIVZOIpZlVlmPW4Od8NHL6x7POEoxV8JC\n9NPm6jJ+SDushtcUAvH5jlBRUJsRkDmvHqNR9AED7cgQzUuEiyekAsZhTc60\nwyGM7TwVtsYnE+H5QC0X98RAPyOAn9OYpdRT2mE6pIH8UoNiZh5zkS9w58eg\nOJLIqH7fmeXg4VbHkd355pIukO13OfjGBAePqM58NU8ZAxOPqlH+jQDj/SLh\nLJFeAhElSGv+Y+EETiZyb1U+yhAtO31XRGFdzlwTkILASeyGnrFG2xRLMAcq\nkJnJAL2bTlBr3HlNPIqzffheRn7Dam4FrjucnYPTQX4wxeQCDc2IX3hPGesJ\nJZOttek5SaZeBALnDxcNircKowgLTBGUdefL+7D5LDOCnnkp6RgFEM3wLTiw\nFHrfrd3StXm+JkBwHlH+SS3r7j+Oh2cWjcw6pce7xpaNAHaCCi/gyyQa6oU4\npkY85JeenPU21h5LeSdAooDkHNUoc3QWKT/C3peC+mhuFFL9h0ipZHWTndRZ\n6Jk9AVK13uUcdTlI2FlPj+Ef8t3h/y0ZgZrrO8h8UAlt182qEynPK/7QpfOC\nT54j/ZvQZrRDEsF2TZLv0aoqGZIQ0UQbk0zbC+ZUicbYzGAcG8LMP0ZOKQBW\nhJEe\r\n=mwye\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"5.6.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"9.11.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.3.1_1537384790530_0.6546641969070521","host":"s3://npm-registry-packages"}},"6.4.0-beta.2":{"name":"@nrwl/nx","version":"6.4.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.4.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"babd4231d2df6068354e4393e4fde9f3540f2f7c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.4.0-beta.2.tgz","fileCount":44,"integrity":"sha512-Iij1w44H7j7mfczFTGPy4mfW9RLNuzq++bEOJBynxUFtyzpV/n29Uv9oMbjF7FxMk36aAGMLNVRI0VznQH3JpA==","signatures":[{"sig":"MEUCICK5PVxrN+7WCh0X226n80Z5LqMLHjTlNayECoK07zxnAiEAtRrs1WnLCqQO7Jt+OCfPiuUgzboal8Vic+eQuMjY0/I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":402591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtKe8CRA9TVsSAnZWagAAH/EP/2pyVzmkiGICk985+It6\ne0gb3idO0/uPBWZaliO7DRQ3ctF6nMRf7pssCyk64LbaddjyBFrMOGtRcwtu\nnEpDh9s+GBB5lMVbnzfJH+RmiaL/RB6+8KA/mJGVJ3hNYQ6isiJOo+ANAplf\n2AX2LCy0WbNiaDGOR3ZxehfyUpT9gtgzhth6Pa6L+nzgAlVSWUT3xOVWsAC0\n2/oKdAVHl+S/zqQzirH5pUWd55UymriJu61EQRARPVqX5PvxpQtBVsxaq+jS\nHxnEI/bmIrJq/DtKggThZI+g6GQ1i0k0/gReMbJxOBAVJFRzBDIXeZRUxSKv\nv3z8He1H7OykeP+ISJkDT53m9/jQ6peBxTghAiZtbqx2B+S4iOg8sEKhmWb6\nBvZeTNc84UWE2bQpeBcZYJvtyLgl3YnqwOBwHefhwh9xbi21esxiqKVIAkjc\nMT/SEngkgMzgwslkxq4BIYVbIGk3IXJ7Dix38jpZBuaKabo2nM6PuoXWFZ6Y\nBiLnRDQF+IyxoLE4O6mgY13NROnvU+pV0VFiwrgp/VgP/mdoFQIrdnHz3hiz\nopdPu1niwCOWf2IVtMbyXhA72nK9IkY2vF+HzH3c5Z01aGPMM4+YGUKYS5Nj\nrxWqUPtde2mpUkNJJbXAvepWGNoH77UZYC+9hvV17/SjjChuUSdBly+geo+k\nJFpb\r\n=WMsY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" align=\"center\">\n\n<p align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.4.0-beta.2_1538566075692_0.8717098832517678","host":"s3://npm-registry-packages"}},"6.4.0-beta.3":{"name":"@nrwl/nx","version":"6.4.0-beta.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.4.0-beta.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"9bda4ac34a65d3101909ca8317d72ef8c94034ee","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.4.0-beta.3.tgz","fileCount":44,"integrity":"sha512-1699AkTdl0eiV5qtfajcVdZfqrMZ/sxwOKWIwTsAMF6d/9diRx3TxnDxH9mr519eh5AN8AITn7PuESjfvKTzsg==","signatures":[{"sig":"MEUCIQCy3PZVkpAQzupY+LnEzkwS2rMQ2qHU4GJE8u3GTwiqRwIgHOITt4qYtdJs3bmuBHUsavTlu7VZmTP/SWOOjuNRK2s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":402591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtVmqCRA9TVsSAnZWagAARosP/Rz6VWFTXT1+NpahTHpE\neSoxnq8C8hXoCqWXMhWtCGmY5YPBoJbcsNAn/TwUvQTuVdJpNVE1Ou2LEQfS\nHoEAAbPAXiPeCieUzGsEgOg6DsDhth0Myes3BS/9r9EDDABnV/w9NWb3fiAZ\noXBEq2Cow9LlrpF0iUGiGrFB5tj+9aVfo/aJ4ZlCF2Zco0yRqatbaQk5JoSX\niXNPWW3IJD4X3RPHM8Zawrc9rXZPxGtGMtPYrfPtHoR3lJ2obYt9gmmHeKtc\nTrsKNnfhYMK2ZSvU+T1Y4jntkifJuH09ttodbeWoz5x3vY9c+zhx6d+Db18B\nUu8h6kMKfqM+9sjK5snIUWeP35ZqcEql2Zyl5RlrZDiw1FiXo/oUd/64Oo1d\n5VqQdgXwV4MJax2+5YumIJCFIJmsBmvx5KY+Z9KI6VtKmw7SgawE96cJI+f+\n1kWW8krvrg0/zE8FR52nPvw8XtAge5nLQ54pv3CJatqp5Y6ilbYk7aG3axlh\nw8JjLn9Jc2LWfZhbOezrjoway4S0dP/3AMSFEu1OA1XMSeHqB0qGe9yN76nW\ns4W0yxmkjzgwQc0Ih9XRkM5/zBnIMbmbheSddHxtFPBxxGVPVUhJdV24beGY\n4YbDjXofjm7Oki4kIbf5UTKe+qi2mG5zxMoLDtLGCERN+b6M6PbhAGg+Auos\nUq34\r\n=AxPW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" align=\"center\">\n\n<p align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.4.0-beta.3_1538611625931_0.1157688801484611","host":"s3://npm-registry-packages"}},"6.4.0":{"name":"@nrwl/nx","version":"6.4.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.4.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"f04b6a405982c6c489fb3f227a7c66afb0359128","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.4.0.tgz","fileCount":44,"integrity":"sha512-e09hYukjDd9piUj7+CHcJGN1PJNmQ77Wp7qrmSSkY3YOC46SntpDsC9GTwjxaJzw/GXF26LjAms4MVDyty3lnQ==","signatures":[{"sig":"MEYCIQDdOAurlD8XbVCf+BmfA0PcFJkyuJ3XlZWtoWr8tRaN7gIhANJlWBIhMF2TlxEnOSlbHsIl7TRSUocX1fAbehG+/3SP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":404419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbuMJqCRA9TVsSAnZWagAA0C0QAI2Qv+/8FiBP4l6US1V4\nwjuxXJa2tWKLVvNYGcBszcFOhxljRYnI/ndpNDiU43A/z5Rq/fiCaTTAhZF7\nFX/0O9kjjty1iUamxyit6ttSo52tc2YuIORC3ggqias59cuCkSmumXeJatC2\nSCADxGVfur6ys/Y057fQvb0NVjvb8AxEQ6eB0mzBESCd6PlBwgaerTh6IoJA\nt5oLtq8cfHCk2qqeigVr7EDQRnUbDjR5dqNuYAPb91WJ30ujZnM6iWtIH5dP\nF7yNNlFbFf24CS2msmaVGSKnHjHf6ZNibpmcs3849zZM+BGBWm3BOCB5k7/Z\nVrEcXsBaw+Z9MPA8kSXT9oHiaLF7G36HduKK+NElY+LK/pqeIOi5eRulwsOn\nqSGRZYipNePBKPUkY1MANTRsgD66cIbydkIzr1u0KkwvVrGNbVPYNtS7TbIp\ngpQk90bArR0a8ZUwxYAxDCU+p25L4xdB2x1y9ou0IEl2vpQvq9njavyDRH0R\nD84y4SL9ZX4GCz1+0GOLR8emzRlGJf0du5fULANO8keEg2svhzjk7zKlHthp\ne5gjiIFIyUsiR0ufYwFLsMDmwM/U3SJEs+Ky8CIlQbdmdOuINO1onPMpCKVR\nngODgI0SrUvfc9Td1AjGO/66vQDpnKSbuqxb/RVln7fWuSSz6y+3i4Qf6oih\n3A2n\r\n=m/GH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.4.0_1538835049695_0.0985677256157318","host":"s3://npm-registry-packages"}},"7.0.0-beta.1":{"name":"@nrwl/nx","version":"7.0.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.0.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"e7feb23b491d360b6cb3398d1f468bd2233c37c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.0.0-beta.1.tgz","fileCount":44,"integrity":"sha512-zSrPVECKsBJPE/myleML7hmYORGcAlr5gJ/Sw0gSZkWs85OnvFpi7TIIHffe7/kgMB3ds3fY/3cPY35igXcpYA==","signatures":[{"sig":"MEQCIFQjAvfkvYlwaW0daUHELNRbwkl5w8MdkfIPs8HH0UfFAiAYXcMUwYmt+tCB0d9cRTwbEZOXQBapczV3wQsFnKMryg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb0fBmCRA9TVsSAnZWagAAGRkQAIm82njJ42zh1ROHP7KG\n0h8uk+e5XM4OAOAn7cRcS8zMVJzczH/oiyjzxZ7jErkPWnzlyIKSqQuo/NlU\nveiBWoHp7G5zB+mJr++j8xxN0mIxrUmE07wL0WXe+6ioXOpsO3FX39lz4ctN\nCxHNGvmYh/2KhpcUK7eGHdOu41NT04ibBeNqbDDIEYQtWMdNSm7wlFAu9Llu\ntionupgTyeiJNF1OMPKdwGfLHk3gm2pigm5NhiqoGNPDO4s6+wciHKPPwpfm\ndrE2z8TwiFWSEajZCm3u8NMHbC6WVzBXQZva/a4dPrvP8hrYtfpQYeVJN2M3\ntbqzSBIYt2t6HO5hE6CpXJqTmnE7lfb5ta9JzWO303YzKGNBYk43QjjTbbRN\nvkCw1nYuxUcqiciiBsr72RBl+RzFYRXuA27OuwqitkVS76T/haBElc04wFJm\n0tX5px6JrmP5TnpcVjMJSMc8it0hlDS8vSD1sFoPI7Fniet7Ok1HqqaTqXHa\n3gz0ZoCv/LGW/pDxdzTzc7OCUvNpuAPrrcMJRYVmcjN1mT63RIml/NlagAzD\nWtvOVG5ONYouGaRWgbgbMOJCdof2mm25PeTnK/2F7VpcZeVH2yUYYz6RvOpI\nBZEhqpVK5WWRMHorK/NQcRy7zUQGucdBS2+y1Zgp9XFnw9iF+M8IWotn24K9\nW3Ua\r\n=0sL5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n## Features\n\nBecause Nx is built on top of the Angular CLI, you get all the conventional and loved features plus:\n\n* Nx Workspace\n* Workspace-Specific Schematics\n* Intelligent Builds and Unit Testing\n* State Management\n* NgRx\n* Data Persistence\n* Linters\n* Code Formatter\n* UpgradeModule and downgradeModule helpers\n* Jest unit tests integration\n* Node build tooling\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n* [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.0.0-beta.1_1540485221899_0.6817970802053814","host":"s3://npm-registry-packages"}},"7.0.0-beta.2":{"name":"@nrwl/nx","version":"7.0.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.0.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"3d199c844e20ff32382ff458912b0796bfb5a0df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.0.0-beta.2.tgz","fileCount":44,"integrity":"sha512-RNjmXOSSy9lWMr934NJ0kfX1IeVraTk5qOn1hzFCOgb4jdvEtrqAmmIaU/0CR//KaRglBDlGhw+Rh3Zf/fNUBw==","signatures":[{"sig":"MEUCIGfdp/DbmpaGfppZ4uHDAO6S5jMCPgdO3mhE/W+a/88ZAiEApjdSX577LsQgfznCX0UoZR3K6C8DhZpJWIPjT3r98+0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1KZYCRA9TVsSAnZWagAA0dEQAJ/Zn2TcOwNt7px2wJCX\nwnDcvxmBmBl3uKUOvOrXJsy9Ze3MY1gVWxRDfLCMnf5kAj4Xt4FvjcYsxTxX\nipvVn7kYpYTnLAUP5y+fRPWqA9ems8sMplvlgOxJKkV4OP1J7tyAREXnziYx\nqVu+3XD2h4+OH+iOwY75FxEXldXhXsuYXKmje1vOXJ0Nib3KQ2O6O+isrGhI\ncOCccqOQm7n7rnbx4zssBNLVBiPDs6xpE3lk+G0lxZ52JLaQtpEZEzK1NT70\njdbzJTfxR0hzMGnKekOOarM/DuYLmZWssr2LS4Rc53NXCxw8O76jxpEpGG9H\nVWe3Yy8VZU02abv5qbD+UmsqzrjC5HzrirrXkiuPsB36wGPaa//+iFckY8rl\nepaW6DioEFlBs4tDRMCGT2G7RFNmulgWQJHpx6szwL1VoJ4sqcTX43xT2SVO\nkwl7iJIeAIdJoBit5bIjKOBIUfhcsEb8CX7ltd3GgaY7f9LfAOftTpCtrYR1\nPCossxBuIUBB3G9qzWiWMx693J1eabXJoI7rj9snv3naJx6BSf6D+xdT4Swd\nhlPHXiq9V5tDvOdf4JxVC9LRYeXON8DPBPL/FwnT+djGkRcy+Kfj9vmK2G01\nsoc23yaNOuGTxtDrzFIOTmJmXDg8/ZyzkVbgGDiTZhaXHHF9I8QyYEslVuVu\ntNH2\r\n=mboN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n## Features\n\nBecause Nx is built on top of the Angular CLI, you get all the conventional and loved features plus:\n\n* Nx Workspace\n* Workspace-Specific Schematics\n* Intelligent Builds and Unit Testing\n* State Management\n* NgRx\n* Data Persistence\n* Linters\n* Code Formatter\n* UpgradeModule and downgradeModule helpers\n* Jest unit tests integration\n* Node build tooling\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\nng new myworkspacename --collection=@nrwl/schematics\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n* [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.0.0-beta.2_1540662872126_0.3844580650476137","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"@nrwl/nx","version":"7.0.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.0.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"f444dc26114fad0352b10d362f17d633cdac30cd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.0.0.tgz","fileCount":44,"integrity":"sha512-im6ywRKVv2/rCt6U5SF4JVeo5VIkd5WbPQMAIYTFy1nXtW4n50gHfYZj7n03+0S6Dkmkqrcu19ScsWF5QLM17A==","signatures":[{"sig":"MEQCIAd3MrtaSeNtIpYtUvJ0w5ZV0yaA+VE0brR1XlP9tlCqAiBEpNm78OsUHfunKxQgVFciguz8k+fzuIRgHgIVEMVl9Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409542,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1eCBCRA9TVsSAnZWagAAn7cP/itRVAL0jVsmzbgQABqj\nxkbwSJH+xq9neUIZMQz/rXsqdV3D471oNLk+W21GSFvhGhPJIc0RVXDIf9Mt\nY0Ty6bNSgVkPxq4f1zMRFYrB2cW7YuYkaHaej8EHT2USNp7IT4UyTcW1kBrU\ncx+ce1p1veBliv9jQQLjQRTQuIMWUfx/oibKiCIo7Xp8VKAxQuHaGH9yFxMX\nIVrUyapBIC7Kp7yfDO/rxYlhkmmfvrSVJPi2WFBoaWoH0zPQ2mOc/eb0hNcL\ny+62hoOx1pFgvTG6Wom38061TgqjHJc+5sTeR1gjjjTBXM+8irVrPHn2KlCv\n0X7+0JCkk+e9114v3/ySHZpkdJLXtejyF8ljEuIAFQ/SSvMoRiu8j/690yRd\nrRVrh2lzrfSYdaNCss65GBEazqTkqa4rDtpMgczer0xVDOJgliaSC4DhMrRD\nXz3FSzYzE+fb76bginVQjC95mdDLTDDhZndNArBq/6p4U1RFVzoS6M9ZFXwU\nHqBCQkldmP+mn6Bdbm1Lm0ztjo4HR2Ma/MOLYAU8O2DTed/eF44neG+gevPd\n3MNYewCWxeYpfS8D1ONIQcCdyji7TpxrGT/OkGV1t5Jf4KWcn1iU4Zkz+em+\nYiNWKQ7B7STH0qpG62Lr1IoAYGvqjjXykUlwC9WQuZLl09u5KvxRrCQGvIET\na0Sp\r\n=URh0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.0.0_1540743296787_0.26677912186613506","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"@nrwl/nx","version":"7.0.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.0.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"d679e3488aa352fa494678edf3774cb3e7bf13f3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.0.1.tgz","fileCount":44,"integrity":"sha512-hAhGTe+lgthgLvEvEp+chV9fHCarRALaT6JJefwSOnqTiL5GTpSTm2O/1q1GCC/RGuiYy1LlqepUs35LEBRiCQ==","signatures":[{"sig":"MEUCIQCcKHnFCNxWYLNIVQkFQF3mrOrr0UhJER6eASa12nlQ5QIga4GrjiAAVYagnfMKTSooz+hFkvXd9XIJh297u7e5xmU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409542,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4JDwCRA9TVsSAnZWagAAO0wP/1y9OMTnX+XijPLHrRIr\nZcszNL58cQa6jv1ZyYb6f3KGSVpUuYJOxg8VMvvbPicIvKMY5TYPxXFfbKQB\nEPe4cuZ9o45HEF43eOFDB3VIHnAPqvs5LlNQ7aKcdrQClfujjAbNLMoWY23o\nZH0Ad2BL1b4jr9ghvNv+V1x18HA+M2zhFpqf9TYRaCOcEM2EIVpJF28+utSn\n9sVth4pyXOr5U+s4QKNgv62nrEgdOYp7XhJplwylZy90OuxGCU8dGo5iKQCJ\nJSjEMQgy+AwpjSfWO9IT4eXnySIQ7MzHwrJZzz7iDRfbYRcj3gwuNOBTlCfA\ni9+5j5AstWRMMC0VJ0hwKpAbNpYeH/b8dSDdJ0V2Uin6q3k4zumRXwpbjYTT\nRK5ZqlFgqjikvHyztAgJ464b8NTAEZG6hf9ku8ym5zaGGxzNydjscGgL2yQp\nfvxBGIb2AufQJ1qR3ZQ7s5dgxq+UjCcDxXlSnr9CNQudAcEtfqjgCT+P3fxN\n6t/uEXJgiQyGAAbT0wFuiv9iE57nW8gN9klGlP3X/P1MpOMywUPCHyj0vdjU\n5JAFG5Eq36UNi3cCb4PRJcHwo1MKXfOT/Tyfa3b4LjcQfDeXW9RC3itThd93\nx8jKAkq3MeM047hU+ydq9T317URu1bP+hBfaA+44LVBXnZWeGgg/FRmmmgY/\n+LVG\r\n=Kn+Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.0.1_1541443823137_0.166039746191031","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"@nrwl/nx","version":"7.0.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.0.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"06b05dc14a6c5e42b2466f71384d345b769fa9b4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.0.2.tgz","fileCount":44,"integrity":"sha512-S7PC3Ldqx/8Yqs72ITKczJgFSs8P6EKcbUJ0csZrGiwd+A5e/T8+Vta4BJ2fjhiSqGnUq39MrCV9kanQgqMDrw==","signatures":[{"sig":"MEUCIFOI0ByxEmfNX6+eRxs7LjcS6diSYhk8pWBjIC7cSLKWAiEAsnvdxyi27tiKZiN96CTKaaq7C/mIW8XOQVG0SOusoS0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409542,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb42VRCRA9TVsSAnZWagAApJMQAJOZXpIJ/249LfaxkcWK\n1mKyvEHO4s0s5irS6Ft2MeYotPRZa+cgH0xDufRIvFjOC+Wx37pYtIZJeEcY\nacGZjZDd1p/t+Fs2TehRpCw1VpjqNccNGtQZ2u/9gI9Qvu8n9Gp2SPmVrQOi\nwofcolWRSLZTBWiB+hFOcdeSmMMMaXwJidQ6k/Gsku2mLDJYrf9VGfNgVD3Q\nhbxI4riCNNSgbZh1l+zFrESTNYkcc4ayAwV/i2qhT9rCQ9P21sydoaZos9pd\n6ObLQ7Tx619OokBA2plkyGGie9i5m73r4qLLAC4C3Sg0z3TRwlca6L/51DN4\nHaT85hCC34bmjDKdMdXVdC11eyHDmD2L1MwhwHUq8md/2CQPJwAcYJyil6wt\n9t16V36qT8Jx3RsShsEXfqd4M8BvfacvHLXPsmtgCVN06x6pvtHrt3Iqtz75\ndyXs2GXGVqSYSz4lPLjjVyZNk8OjZcRcEIwUxlciHz18YPXXxVXmrQb1mlVX\nA0KJrmq7/EL3EHuj0IG/DjpDJ1eedIJbDHg2MJBJyDtT3ShWT54rkLwJberQ\n3vpW02xKaDSl4Kn16+ewBx2aEXAUfK4hEwEjLZ5Vc9Y/3KtZqF0NYqctxS3e\n23Qmf7SoNwBBD1MPLJk63A0pRFVN+/MO2kpOVdO9/1iu9B8P/zNWFf1GNTnS\nZlyF\r\n=cm7t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.0.2_1541629264963_0.6646516233509594","host":"s3://npm-registry-packages"}},"7.1.0-beta.1":{"name":"@nrwl/nx","version":"7.1.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.1.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"5e78098ee5cae4a0c7f1dd70085551b6a13558a1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.1.0-beta.1.tgz","fileCount":44,"integrity":"sha512-B+kgec4aOCqY2m4DMMj1u/QmalWUqTtmZ2fD9cevbUJ5urTvYrIMP5TLbcECk2b4x9qmBhKbH4Qf3F1Twc53pw==","signatures":[{"sig":"MEYCIQCKji5NK3gCJuH27m9jJP0PLZoWVjI1e8Hf+zThQGRaQAIhALsn70/DydaxCeI/ShQxwFgTcgwsZfpQhYXS2lcNTuXN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb8cUHCRA9TVsSAnZWagAAonwP/3UOEh2HWYC3I0CuuOO6\nKuRTZRU2yeFmcNXl0/jqIDswfMwVgIeSE63k264SC4+N+VTSO4GXemFs26F1\nnIce/+vuHJM7JWZjKqBwRER4jdAEfYQVXKEajyawSwTfOxpJ2/MRfE4tOeV9\nogUXoLCmeZ+NdESic9Wz2r7ol/CVVf7wkXj2Wkgs4fvfXFRk5QX4AJECH5+x\nx74FgXWqbqeqW+8DoeygmCiavoDq0q0ZSI3zfaMUK2ddKHrnLG1SKqYkyCZZ\noHYi7dXzkfznuoAa4cz1TdX8PZItbLsxvVyzqYXHl+mrVq7AIbrR09VD5KCX\nvdhL57LOPjbg33+oNM371Hj0h6P4ftW3TIuW03x46GrbGJTrDm1uM04nRixv\nfYvBPVAOPflK06YL1/I88BitNm9o5Bfcw5jCokCAFhlnsfHyq3dKndyrKFIK\nOjUJ56b5sSe9QVdERAjYc8qkTW7zz9h6MbhWR3LUjd9rxpzA1QVPobMsl2jd\nRTI815j12QztrcmN7LKmWmNY9OjMCQnsMRElh7EsYSG1/5GXzhIYLOInFV/4\nOsk4sS29zP2PsfnETk21NMOEH/xS4UizLEIZAT0uABwZaxEORBe76s5XU+yy\nby8RDL+u0j1kWdDSh7VCGffTq2EJ9dCYn9yQrMIEn779PntnLI3eiodlJxgD\nDshw\r\n=Z/BZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n## Features\n\nBecause Nx is built on top of the Angular CLI, you get all the conventional and loved features plus:\n\n* Nx Workspace\n* Workspace-Specific Schematics\n* Intelligent Builds and Unit Testing\n* State Management\n* NgRx\n* Data Persistence\n* Linters\n* Code Formatter\n* UpgradeModule and downgradeModule helpers\n* Jest unit tests integration\n* Node build tooling\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\ncreate-nx-workspace myworkspacename\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n* [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.1.0-beta.1_1542571270798_0.3579937824239352","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"@nrwl/nx","version":"7.1.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.1.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"daecc32e293906aab6faf47e700425d81a4e326d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.1.0.tgz","fileCount":44,"integrity":"sha512-u8OkLBwgKwxnInWIqNEkIkLAZVx+JBMIkxV9ffWcBRhLC3tOUWbIRFbYcMS+UWkMGgR8OKgS3Q2fKgyxPUMLoA==","signatures":[{"sig":"MEUCIHcvajboPTpdido9h4OCSdg9wrYtj0OV0u5UJOloV1LPAiEArxk89xTglLiRvQEiXg+7M4kqn6Xsx1XD5nwzwY0XT+A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409751,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9ArbCRA9TVsSAnZWagAAHh0QAIPASmuI0EhOtxRhzYDZ\nGfKDzH9K+wOKPjSkerMajmWhcBi7wHQmDfuZM3eEbCLza2Rx+Pyo+M35UIA1\ngGxMn+NYxbCUOF1LFNBE8hTvSksz5fMm4B2pOn0HX1zEAnJrtTn6aB9lIzgI\nXRfs43BsxO4hFx+GTxS+VbP9OEa+W+QbQqnpdPttVV37xkXVhZMfS11OuMCK\ncz5mjU1D/n0g8/hTl1px1ZpgeCVIQtgJa7ojhx7ZCSLNlyYG2CB80POjMJ0n\n3Q2u2SjzLJQdaHyv4zllltp8ylc4sdX5CdnKV9TErAXvsx+6uptzPulqdxQJ\n50W99IC/BjjYZLbaIuTkGcGtKCcGJ9maCylvR0TQIDtl5ACt3yF26/EzTwd4\nlX2+g+STPv1EZRf4kw5WeqWbCteytKomLH/ut8iXolUlD7a3uN5RoSmUqCRU\n1lmzXxrXA6quiiSV7h22UfgnMYJUVuVhPbQ9w4fb2zgMONZnAQZKvBI0CvB2\nSY/6RAPNmPiI4N+31w0yy1TKQV2WiGm9wjZyZXaIg74dxX/1wSNgxE+7UvzA\nQZWypSeKIVBbrFzoDT0VaSXyf2narDKsF+X1yGwcfu9HhFQz+36IPxOoHXrR\n2zXpvgweJWMThG9HKYpCpf5BsI+vdPjQ3MrkZrBHEdMiALEkl8/nUQqiSbdj\nShN2\r\n=TIAP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.1.0_1542720218049_0.023936062396334057","host":"s3://npm-registry-packages"}},"7.1.1":{"name":"@nrwl/nx","version":"7.1.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.1.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"cc0483f66024fd4854d4a14a89da6064121afae6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.1.1.tgz","fileCount":44,"integrity":"sha512-2K9WuS8MSdX/PCtUFE6ged2mnwSE1g6iS7ViGJSNAvLje7RzBDUH+9LTKYa3RKOTVO3R4kOJjKRhXed2HDAucA==","signatures":[{"sig":"MEUCIFLsnJmEbCw9eIqiAOxHjhtcW0Heq/igwwa2b6fTCckjAiEAk+/NOy/6+8815O4K9sf2/SVsNkZs+uBIfjKXaUQT3s0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409751,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/HEiCRA9TVsSAnZWagAARn8P/0cFzGItqJnviIRCaj4N\nQUlh1/hsg+d0q7Haw7APnZZNZQj9gi+JVDZW+kSHNPQGcrzOSE0rDvZk1sCQ\n4JC2oqXwdjZnJYAGKFLVE6zW7AEmgIx2ILmlBLFiSpnj9BI+OUta9AiMCr9M\nrar910MZbHbGZBpRYESYC9VCAhr5rJpe1viKKBBuSdwSaiw7TkipEMwriu0j\nkZb06EpMOrmA23TJZn33nLnHu+tDELy2sa4NVArBfomHs3WANRI3gW2D+wR4\nu0hhhlB1/vVW6GJNQmrZ04J+9Uf34pjVAwCFe4mWU0uglIViv0nNZxEcPCml\nrHq0RnCvd/mqlmv8oUXWn5pbE3yzkYzFvZsYTbgOkvYQH2b9FpUdB0xPCpZ2\nAJEi5Ztm16MwBE/sn6h2Zcz8akNuFHDee0wWxdE3qdYFx27vZz83/PDYzctM\nEfEbVDbEL/9XpcPZQND3aPyTR9wOSbfElE5jHrEwZMqiVglaV/9B0DHWaXLU\nsE0/Be3xWAhxW/zOSKIH+7HYMcwxY45xmcp+76gXsBeW7bk5mODLRrIlCJvy\noIfWT15EGWe6OUHKhk8AR9sKd6UjIUX7DfwTaDKQWVGCN/N65W6YMBKZ9YaG\nfZ2hG/iirLNFj+/X6E3ogdRFRUn8TT6SJBfiLTcb54WNsUodUMGV57cCWExd\nN5fn\r\n=4lv5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.2.0","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"8.9.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.1.1_1543270689976_0.44396459364040086","host":"s3://npm-registry-packages"}},"7.2.0-beta.1":{"name":"@nrwl/nx","version":"7.2.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.2.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"523a47bd1309aac869c861bc85e09763fc430c50","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.2.0-beta.1.tgz","fileCount":44,"integrity":"sha512-XNlV1DcDbrZF9w9FimTbTs1xMqAkF4GVJqvu8G3KEPtkpx7DiQX78ogAewdazOO2zIwaVKfU24F0Vw8e7nVJkw==","signatures":[{"sig":"MEUCIQDLWou1UO/4NtqI91yKVC06+UvA2NARaJl4aGy/kq/ZPAIgVA85IC/SGstdb9JSSLLsduxAy6WHVh2lB8Ha1SXQ2QA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGstjCRA9TVsSAnZWagAAXVgP/30N8Wb18X8Cx+hEBfQS\nvSLaV65GKdBPD7eO9AmDmAZl86cWUBdla6dqsQHbrM5JeQi9cBBNzhbrk210\nphndWZggT/lBvi9Yy2wVogA45NnAyaJkBO7+fdyc70ZbSlUbcvi66BCOOTOG\nzUAaobdL5ahwII9WHUSNeqCzX8GAiLiY4XP8qnbozruNmMjdksTn386bD0ZV\nvEdBV2ZCoVYvkvyHxbYXSA7dxngX/BOLcF7jXN5SbqvqguSNmBjcGHUKC2bF\n7FpYuMJnd2BNFlh6C2LWqAZnN5kJ5SYSR0mRXg+H0/gp1h+IMYVpxuETGnN6\nyTj3wJUCQAPGj5TeWiq1cOvKHKitdDbIR1PW7fKBInYbXXrvXeSE25BOQFKC\nR9Y1C4ofAv0pKO190IgPY0mqSVLxk88s/knuE9nw4wc0yP8pnohItRIWam03\ntkPDhSNiKI3YzPGBX6Pwo1D1IXG+tv/BOC3WaMQhpEgfl2IKVHxlutYLMgj3\nZEYhEOvO/ONTEr76mRNhLHy5irUiAkI7bigxZJg072cUwmUjkP2Ad5lzt/I0\nrVPJzzb9Rhi2X7RNCCc7OxWIKt9NuHhs11UjkX3BA0kuJq1XNg4kU539v8Jf\n08Bvw50lK6p5zIEC4Y0g1rFZJPO7uSZUiGHimBeoXnDkheC/N2IKORiYBw8F\nkaHc\r\n=npH9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n## Features\n\nBecause Nx is built on top of the Angular CLI, you get all the conventional and loved features plus:\n\n* Nx Workspace\n* Workspace-Specific Schematics\n* Intelligent Builds and Unit Testing\n* State Management\n* NgRx\n* Data Persistence\n* Linters\n* Code Formatter\n* UpgradeModule and downgradeModule helpers\n* Jest unit tests integration\n* Node build tooling\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n* While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n* With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\ncreate-nx-workspace myworkspacename\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n* [Nx Documentation and Guides](https://nrwl.io/nx)\n* [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n* [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n* [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n* [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n* [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n* [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n* [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n* [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n* [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n* [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n* [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.2.0-beta.1_1545259874132_0.3543453996955852","host":"s3://npm-registry-packages"}},"7.2.0":{"name":"@nrwl/nx","version":"7.2.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.2.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"c68ddbd97e72de1672edee3605cfac538209a973","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.2.0.tgz","fileCount":44,"integrity":"sha512-8mzqNJ0R3HItRto+YLQivJHQnmVJ69iaSy9QTxlw6KG3XK3wG5Ra7Ye+Bypl3mQjYzQoOIMvWjXiyMK/+Opeiw==","signatures":[{"sig":"MEQCIB5ZdEYF7dMpHsHdO4A7trNY9u+p2tyJ3HPb7utTBaZzAiAGphmLFpEEG3WQloxivpBYwknpzJE0HHq0x5BjKjq/XQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409751,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLM9TCRA9TVsSAnZWagAAvysP/ir3vexuWnRw0fCqksHq\nd8/BOePovUVjWhm47PRItRRbHOZMR6CRmgfFryLxD6FfTiUEvShxPPcsPNhi\nBNX00pHJuWgnh4vjMn+n6eXAqLJoFlbxhxvlImXW72Y/DWFfJlB7KnueZuvI\ndIF7N5DoF+J7Vxh1MSHhgbYgFXbdQsgcaroWouk+2m/b7RtX/Vqprat97BJB\nMUa6bzqnboMwP47XewqCVIuNgfIZo8Cszn8iyzMNSo53KOoq5p8m/LMR4znS\nvtgoAuXNv6y2q/XzSHma9CL3RPiLftYaZrltw5Qsk0GHMObZltenT77OrcGb\neNBHo2mgW0ZFm4dGXe9EXVN6iLosEhjaf111cwsmYLv8ofeOLJqyV5SqUutV\nXuYL61IK6YbT/+8sdRSHaeRgIik4o7sRdDcwsd7kIZNP+UhJtX7aBcXsE7Aw\nhc58fVPb8FU9VVEmOaPUSebvBWpwmnPpvFen1CJ/cMBbEQmyHn5tr7zePLNW\nOm9qY5f4ZjXn3ynWrZGCSe8P38ruswmycOMXiGHve9zMqHKKQmb8K7AdhLWx\nIPHJfDvj0pD5NASighEmbKYrBr899+s3LGp//6pfwPEoQUjK9afZCPYBccL4\nrGrxmrBY4NEEMW6w0MG2Kc9mSPf/sP043WXhkEhRCxQuokuBlZlT/p8cggHq\nfipZ\r\n=+3D6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.2.0_1546440530843_0.004408310327062903","host":"s3://npm-registry-packages"}},"7.3.0-beta.2":{"name":"@nrwl/nx","version":"7.3.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.3.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"fe68e87bc249e6d6d83851ce63d17405ecceb0e3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.3.0-beta.2.tgz","fileCount":44,"integrity":"sha512-tnRzbtfFsB10Vr++U/XK57Yc6uxvgUJY1ClrXxiz9fM4EquHzocyNZO2kNod2yLxH2LPVAeJ+5Qy6ACipanoBA==","signatures":[{"sig":"MEUCIQCqVlC6a0mNsYEaNgSvajUKsOYzVqz2R5ZOvKnI9cf+jgIgLC8XbCFdGbO+burJRHApeKh4KxzWH0tJJMZOIBW48LM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcMTI5CRA9TVsSAnZWagAAUjQP/16h/tzoR3r33FdLbsyY\n6zhJY++bOCd7RBeB2BQXsbQFV8ki2ctiVEy9vL3bHCNcZ6HK7CyZfpEpPiUK\noSxIZHfa7jwASPgbfiFff11j3YDQuRdZcY2Uwddlfuo6lrH08sx+SBooMd8L\nCuM80C0iE+Gwc+jYtXviKZMBdswsE+a73FiR08VwOXcfe03ttIviqMdj9I2z\nlg2IzWpDzVMYB7kcyjgimqmT4AfBBZDXeCUywpiglG+gh7XUmM7zHcI89M13\nbaHm8CVrjkq3rUzxIN3aGFl8NzCW1bVNLfBAY1epZBMhi02ccXMae6MeamQj\nXpD+SdQxNqnuniN7BVsB0TE1hT9HLRglN3ux7zzHmMDhl5Vqq5TnGt1RflRF\nvQuYows6iVBndZqeco2G+OtIO7aq/uFqVESsZmf/WAm5GTXcDMDZtgBrHcmh\neFiX4H7KQJ0fVOA960zVLX2xAK3XXbfMGFsc4naTudqED+/Ti7Y8vuDTZUwh\nqF+AgtUkYX/rSeiRLOG+/CZxIrgVPe4sRjnFfT7sUO4Hz4zaldCxQKl4L5PY\ny7o8fFEIwpcTQzYgLK+jO+CD9XQd8esSFFvoAF3/80fOeGQ7v8guj3XGcZTE\n9LZ5CRZtKuictdP8sU6RIQH3ZVNHwqQxHZnePsNMdGVy//m5dq9KAgqJtTvv\nTFfH\r\n=+Tkf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n## Features\n\nBecause Nx is built on top of the Angular CLI, you get all the conventional and loved features plus:\n\n- Nx Workspace\n- Workspace-Specific Schematics\n- Intelligent Builds and Unit Testing\n- State Management\n- NgRx\n- Data Persistence\n- Linters\n- Code Formatter\n- UpgradeModule and downgradeModule helpers\n- Jest unit tests integration\n- Node build tooling\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n- While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n- With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\ncreate-nx-workspace myworkspacename\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nrwl.io/nx)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.3.0-beta.2_1546727992767_0.1629325511508246","host":"s3://npm-registry-packages"}},"7.3.0":{"name":"@nrwl/nx","version":"7.3.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.3.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"17b547233b3b85b2744912866f76f7f9d272506e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.3.0.tgz","fileCount":44,"integrity":"sha512-OEN7rcWAxtEds9gsRRE5Rz0aQUdKknMoCqi9NRO/s4LxMv+chNZdVC+2s3INqiVpw+HgPW4oh8y8tUsXcjp+Lw==","signatures":[{"sig":"MEUCIQCuXkQwz3Qde2EezVY5WWwAJeOrZRXvp7YNBCBk1W9g3wIgMygeOsyfR2NHxrbG8w9/pVW3JrbVpizYyJXNS/yivXk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409751,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcMUGxCRA9TVsSAnZWagAAjcoP/jgbLuHtW8nYw/PnEe02\nQzkvLHxpMKGhjBFEZwweX9ItjC++VWZq3f9Xous97Sq+KB56HF3GSGfDPYbJ\nRg6gbZhRSx1k7NPw/aWdSTNdxd/p5v9oXP//0SeYP7OsszqELo1g2WgfFUOE\ndaxsI+1bydQKrALvuerYSyEJF8UI0dbttg8k1JKvQkIXdPXwLg6hZq1r3kbT\nuIikXnXoCywQ1tClHTF53pC23ssyGxsnKOSahkQMM+FfFT2m/cfKDg8YNTlv\n0UoH7Jt0TqLEX3+2H4u/F8k04u8IAEUOwq7z5PltwHuRiuNDWF6TPoLyPVYE\nEeW7TDdBA8eJo0hVGue46biKQ+4SG4E5dW3HqyWlDDm6vLRqBlVORFQreZ4k\nk9I3j7vgAuGaQezrElYt3qMOes1Qpp1vZfvBTYl7QyCtVn4otUeOg5RwyO9s\nahwiJitc/PFA37HZPvrshyUAZSQzN8UUZPrK+3oS0joQD4ka/i47ti0lnKHR\nKN593lTwVewZnrWLsYedrNdZfFdOu4FarRabap83/ANvP+wDEwzyicRmsXz+\n0swoh2jBSTtREx8zf6OTiaKfqlnRXXkXZ68n581czEhSonja2eaSZmDlk0ph\nKFFA3Mi3ak0RKSyhJ5fnLF0fwkSifM4GbQB6evdntteVkeSp8JgL/QQSIoDL\nqd7U\r\n=+c6J\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.3.0_1546731952516_0.8351497296649153","host":"s3://npm-registry-packages"}},"7.4.0-beta.1":{"name":"@nrwl/nx","version":"7.4.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.4.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"487091bf555299df33475b5ae0760103690a2ad5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.4.0-beta.1.tgz","fileCount":44,"integrity":"sha512-uGZLubtSnqWZ2jyBbRA8RBZs7QAzYDBcMjzSBoR2QmaIdVhQHgDb/kdw5ZfF8qUhRPnUnJKVZCXa4o/evtgmIQ==","signatures":[{"sig":"MEQCIHY5MUYX8168tbleO1O+lwWE2Av1t8MTETcAeJW8weA2AiBDsxmvn4rdM48Z3vB04bglFgDmedh4RQerWxzuE887QA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409726,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPhO8CRA9TVsSAnZWagAAPoMP/3cbHD+m9PJIVTX5M2AG\nWLZ1x4wwq1DHOKEigKnIuIVkVBd2xTGS+xv0LiQdcxSnqTqmWpVZN1Far5H/\n74+Ez4cJCY/IiPZrabK7iUUykhyk9IU2B7aG68B+RZ9exge0PJlJUpT4do7S\nfPkT5XYleMqp19rKBQFTodm2BmWytQEDdDw1AAur8J/0/1cAiw75G3twIc4K\nwu8PKUtxhaaIVB32w4K8Gj8u0XeEBsX80liAozYYSeWKbRt1mxYt/p0zia1f\nJmQUwk0ldBzKPOjxqhWSZV7cqT30IRe2Wco2QzJLymqjftY6XfWPly187y9j\n3k0Tpi10Es5x1A67DD+GmP5drfMQNGsKKqJZgeYk7OY0T3WTmkMtbA8ZloFx\nC+0kWXFEZB3yw3HkQ6BbVicejMC9geNHW/sc04vdR4VKWmqteH7WFrw2gPa9\nchW+gFr7hhUifDYVEQ5Fj8fZtlLwwiCezgjRPPUlDF+w5ry4DAqa4E+tvGez\n+YDk7KpbfTAvc980QRa/t6KmlITGKGpnxfOdbT9mnIrI0CE2a6lXkcHzDFXo\nbgkSFssGOIwnQyfkTurJH2M2mntlUe9Bp6O32VKpGf7dFRfLZuvopjkDPYIm\n+Y4StRyBjo4yxn8g9nfsgmySQMuhmqXT8dICIiDScyedXMw41SMmMHn+xVuJ\nodgO\r\n=i/ww\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<h1 align=\"center\">Nrwl Extensions for Angular (Nx)</h1>\n<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n\n</div>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is b\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experienc\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience wo\n\n</div>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n## Features\n\nBecause Nx is built on top of the Angular CLI, you get all the conventional and loved features plus:\n\n- Nx Workspace\n- Workspace-Specific Schematics\n- Intelligent Builds and Unit Testing\n- State Management\n- NgRx\n- Data Persistence\n- Linters\n- Code Formatter\n- UpgradeModule and downgradeModule helpers\n- Jest unit tests integration\n- Node build tooling\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n- While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n- With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n`\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\n\n```\n\ncre\n\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\n\n```\nng\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\n## Quick Start & Documentation\n\n#\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nrwl.io/nx)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- # Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](\n- - [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- you want to file a bug or submit a PR, read up on repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- ## Core Team\n\n| Victor Savkin\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our ----------------------- | -----------------------------------------------------------.\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n|                                                                                |                                                                            |                                                                                |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.4.0-beta.1_1547572156051_0.5880002773061712","host":"s3://npm-registry-packages"}},"7.4.0-beta.2":{"name":"@nrwl/nx","version":"7.4.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.4.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"196dc177f131914407d05dbeedc4ab5b3cd1db66","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.4.0-beta.2.tgz","fileCount":44,"integrity":"sha512-SiopOmWO3zRkXeJPc/5LU9ueBlfAXzyCj+I8bKyaWmyMp1ATu4mp5CtVqq5LaidKuoRp0THquKzX50RV9zu8gA==","signatures":[{"sig":"MEUCIDcNdjd5PPV3JJYVXw14VDm+LmmH1Nyo0O4nlCYOGsrhAiEA3fswL6umqWD61eivUN7tMd+HvD5M6SfybUJAGnGidIM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":409719,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPjS2CRA9TVsSAnZWagAAjAQP/3mgHj4szikYz2LGlh1U\nYQrGWp1Zm1XGiO5Ga0+LqKntqXZu4HJ8OlSJu+mhHqGYmdxCqQyyqUPptm8u\nuOlHPAzwTYBNulRDh5XG3HS2i3ZOXnGtlRuopOCV4dQy0UU2wdPuyomf/7fd\nOp2LyBxyvn/CMNKsSF9DQtXLRg5jjxzAXjoX5oP9sB3CP8ebXuQp2DG8IJek\nQwOWXHzpp7ppfsB2IFWZHTMFs1QhwYug2fOdafx4KZyn/KLtDOYQe9/JyZMr\nWuSGjuuzc05yObGPGB/DXVoeVAEhpUWwC9pFVrDaTT7pxZyTHSDZA8N7GxbS\nF4l9iKMu8uQrvVPUzXQGL5IFuovYlD7/yQCZZKarS549Hk7pt1adyy+7V5zV\ni0HiVbLyI4HAglxVNg20C42BhB5xhiLQ76+13cEgaibhR+odq0XwVvOcgoBs\nMMaihDa/95oXPDa7xUFRm/X/oJAzVaCnVuk14C1T+/AGDSB/XclhOyKW9SD6\nhNebAu4x/uuTFpxK6JUUfgT6FHI7SZE35h4nAdXkp5BGFu14uXilE+cpbgA5\n6CrgMHRaoLJsfCtccd3149vK6xdCbzyQOro9ArYWQQtSzgzh+0h986nOTRf+\nrAG7xzaKmRmKXLNHwo7J1hST+Phk1DuBlgpe0AhjrGI5NaEPW0Mg07y1ozXV\n9ZUi\r\n=TG35\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n## Features\n\nBecause Nx is built on top of the Angular CLI, you get all the conventional and loved features plus:\n\n- Nx Workspace\n- Workspace-Specific Schematics\n- Intelligent Builds and Unit Testing\n- State Management\n- NgRx\n- Data Persistence\n- Linters\n- Code Formatter\n- UpgradeModule and downgradeModule helpers\n- Jest unit tests integration\n- Node build tooling\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n- While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n- With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\ncreate-nx-workspace myworkspacename\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nrwl.io/nx)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.4.0-beta.2_1547580598003_0.37175148855593987","host":"s3://npm-registry-packages"}},"7.4.0-beta.3":{"name":"@nrwl/nx","version":"7.4.0-beta.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.4.0-beta.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"19481cbd3a10820017fdd37ad5984cb5dee66fcb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.4.0-beta.3.tgz","fileCount":44,"integrity":"sha512-iKs9RNEgER66VqwfsspFeryrJozEMC5PD5pOGOlA3tlIlTn6Q9eZoFSTsLjFKNfiREFyHMdiSr4pKCzvHvoJ4w==","signatures":[{"sig":"MEUCIGxlftnueKzhU2pjIe5KHg9/+4c0pv9ptzLkeExNIhSxAiEAthzCXa2sxbYESCf7YQO+EPOIbbiYW0hn5U/q+RnSGh4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":410214,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcP2zTCRA9TVsSAnZWagAAfjIQAJFkSyUgm3hLB6MbrXh3\nmaboRTIbeZR8ig6kCvE/rDQ32SPzLWgzdprMR3dXtxnWvFtxiX6Z7yW4M1Mx\nHDIVW0pH5F8PEGEhSLyXybdKSLthJgPajAg/cEQr3CGMJcyyA34nrB6w6lTe\nCXxjDbBp+PDmkNkKEOsl97w+iPpMOskwb/qyBQM49ij2q01rqI5gu8oiQevS\nRm2EmWB+UNNNWbz07wTUM9+g31DtK/L2SasFoHCMetheh7RzaI3tmvP90WSf\n4N9dBQoOPv5bc7N/S7QMngEcmknTxDRrcMURAHiVLRHOX6VFXSp55gNsdMy0\niB7rQFETVqoMFd/sopDuNKb9/ZA1Xe8x2T21s02c6IC+gEdbmkgeMOHachD5\npYmWCoVVfHYGSmQqaG7X0NB2WIw0sueVxBM7VItQzY5hyXq4IEVztBwRMeO7\nB5NJx0v19yYuun0UQIUqwz6mBlL0uiq0qNEKw5WSMvGnMyM7jQEvFHo4jLl8\n9ZVXTL40cJI1J08AVoQtgfTtpZz0JaAf0v8XgjStGpjmGsRD74IaNOziBigv\nHiMu+1omxg/n5rPq6zMcMgGhvm1ip/1Y7cZM3YbnGG/ysWUBWrOX5UFqm3fr\n/FWrVlTKCp4paxrdO04PSCFvK/fDovO0ZuyA8ji6xEKFZasUKYIaTsQWxT4m\nUyoM\r\n=oWb9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0g97pW0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"90\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/77nvAJVU9yTDmbUj2zjqS5/3cae7d978f6502fffd0130a5644bb055/monorepo-book-banner_2x.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/77nvAJVU9yTDmbUj2zjqS5/3cae7d978f6502fffd0130a5644bb055/monorepo-book-banner_2x.jpg 2x\" \n         alt=\"Our Newest Enterprise Angular Book\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n## Features\n\nBecause Nx is built on top of the Angular CLI, you get all the conventional and loved features plus:\n\n- Nx Workspace\n- Workspace-Specific Schematics\n- Intelligent Builds and Unit Testing\n- State Management\n- NgRx\n- Data Persistence\n- Linters\n- Code Formatter\n- UpgradeModule and downgradeModule helpers\n- Jest unit tests integration\n- Node build tooling\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n- While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n- With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\ncreate-nx-workspace myworkspacename\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nrwl.io/nx)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.4.0-beta.3_1547660498848_0.4585601480632584","host":"s3://npm-registry-packages"}},"7.4.0-beta.4":{"name":"@nrwl/nx","version":"7.4.0-beta.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.4.0-beta.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"23c58c048baabf789b4fe76f9daa06601b784d6a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.4.0-beta.4.tgz","fileCount":44,"integrity":"sha512-nOjncRTly5s7InzFTdEN4PR0ca0/VJB7hu9cKbm5vMFaStumg4EuU0gq+AoYRg0wS3lZ2f1sJtiJ8ifTltqfpw==","signatures":[{"sig":"MEUCIA0uhA4LggXih5cnf1kEHRlzudIcxJLRNyXkPnHKrYvCAiEAhvjTR3tgd4LrCZjgtNYnZeDCIYU1gIg5hER3L6ibK58=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":410214,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcP3WSCRA9TVsSAnZWagAAFNUP/0n4lfu/mdI3Zm/u3SBJ\nr6JFg7LVzazP2ZyjFvpwZkZGGAVmhd0u2DYy8YZpqcYrQkC0DDiJ1bqfwCF9\n3xJ2gdS7YrmKvvhYnywGfLagqpw1OygVUbXIdN1KH1d+JwytHIpIkyU0lJcY\nzvxc5oVb2SQoWPSOxL7tXgisZFxO3a9wfnyfpsJEKDwz9MihZQMOLyKfxdXG\n28Evz87G/M5lYF4hjmtWDz2/ouBlYRgnjxHjdkzJPdHQrvaVOSf0yPxmZfbG\nrXf3MU+DTSFlykkKOGHx+T/Qr6kblXU0QidKZKPMCsozLmxATx+Shr9g7lGQ\nrZVS86Wox5jhHzKYJKTWaCRlGUHw/bIhlB44E0XYVJAFcACdW0suXA8oT5Gj\n4v16FwWdwIXemzjKcIoFUXaVXpW4XqARqRT3JkNhDjRUl1k9QkshFW8Yh5Lq\nN6MrviexPIJ+v5pbC2S6TM2Rfb2vDgRu9Eqtggv9BF+8fiwJH/3VZcli0eoi\nKu5Dci/rhh6diTml0b5MS2YPMBdKOMHytou+VWlm3uFq5OcMAEPF/XBo15NH\nEbW90dAwyI9sKP+Has8tx1ZGuQYRzWQRCrHIm9HeLH+nxCoaQVrZfWKq9EJO\nfOIfUMD9uYfMtF2iixwnKtW7fTnylsgtg6/zFqdLyTDbNKGinCqv5GREThuE\nH7HH\r\n=J6XZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0g97pW0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"90\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/77nvAJVU9yTDmbUj2zjqS5/3cae7d978f6502fffd0130a5644bb055/monorepo-book-banner_2x.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/77nvAJVU9yTDmbUj2zjqS5/3cae7d978f6502fffd0130a5644bb055/monorepo-book-banner_2x.jpg 2x\" \n         alt=\"Our Newest Enterprise Angular Book\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is an open source toolkit for enterprise Angular applications**, which is based on our experience working at Google and helping the Fortune 500 build ambitious Angular applications. It provides an opinionated approach to application project structure and patterns.\n\nNx is an extension for the the Angular CLI implementing the monorepo-style development. It is also a collection of runtime libraries, linters, and code generators helping large teams build better with Angular.\n\n## Features\n\nBecause Nx is built on top of the Angular CLI, you get all the conventional and loved features plus:\n\n- Nx Workspace\n- Workspace-Specific Schematics\n- Intelligent Builds and Unit Testing\n- State Management\n- NgRx\n- Data Persistence\n- Linters\n- Code Formatter\n- UpgradeModule and downgradeModule helpers\n- Jest unit tests integration\n- Node build tooling\n\n# Why Nx?\n\nOn the surface, large and small organizations care about the same things: consistency, writing robust, maintainable code, making changes with confidence, being able to understand how the system works.\n\nWhat’s different about large organizations is that they have hundreds of Angular engineers building dozens of apps. So they have a lot of code, which changes everything.\n\n- While ten (10) developers can reach a consensus on best practices by chatting over lunch, five hundred (500) developers cannot. You have to establish best practices, team standards, **and use tools to promote them**.\n- With three (3) projects developers will know what needs to be retested after making a change, with thirty (30) projects, however, this is no longer a simple process. Informal team rules to manage change will no longer work with large teams and multi-team, multi-project efforts. **You have to rely on the automated CI process instead.** …\n\nIn other words, small organizations can often get by with informal ad-hoc processes, whereas large organizations cannot. **Large organizations must rely on tooling to enable that. Nx is this tooling.**\n\n# Getting Started\n\nAn Nx workspace is an Angular CLI project that has been enhanced to be enterprise ready. Being an Angular CLI project means it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```\nnpm install -g @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the package.json file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run npm run ng <command> to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```\nnpm install -g @nrwl/schematics\n```\n\nAfter installing it you can create a new Nx workspace by running:\n\n```\ncreate-nx-workspace myworkspacename\n```\n\nYou can also add Nx capabilities to an existing CLI project by running:\n\n```\nng add @nrwl/schematics\n```\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nrwl.io/nx)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.4.0-beta.4_1547662738368_0.8910572869691724","host":"s3://npm-registry-packages"}},"7.4.0":{"name":"@nrwl/nx","version":"7.4.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.4.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"184fd3e66388ceebae4bf3a2fc5a3170f89c11c2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.4.0.tgz","fileCount":44,"integrity":"sha512-QscBPd7WTQKcIRv3FviE9L84jnQ9erk60Jr2sq+DWwAy+gSkAZXhS43rOkAglMj2Yxriwgx9jxC7tCtJWS0EzA==","signatures":[{"sig":"MEYCIQCnvruE991KjpX7eh0UkZLdR7FjglqKGFy5hFuQQj20EwIhAKQtjuGovJqPdJvNWuYt8Si1iWm0Z8lDTgMt8077VD+L","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":410207,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcP7nQCRA9TVsSAnZWagAANKsP/0bOL7WRe9bXZMAmfHeJ\na6nWAFebqaTEE8AjldesBeEh/BVNpu3dFZ8q5WyM6wJD9VxzzKlv7j3So/zj\n3CWOGFzmIEflC5qVozBv/cjVPyrE2pqm27f8y38+pzzCFTOLMrzWFi6BNV8Y\nZ7fM6rVGzXUiwvu3TycJvn1w4AsKLw7pB5W1H9KeAmsKYvEBgdMdp+pza3pp\nGoLxfXlcFet0xvZFthUHjbHDdVB5tjaBMjhbdCanWy6xFnu1Nf1Sc0foqbAZ\nAIaQZotmOIdo9NMxQ4qFcbJ+6O/WJHskt/c13G2cMCC+f+tuHR/IHAd58wSP\nLn8JxXhTp9cQ0kcfgRQxotdlo1ZBMyZ8rSAWgalcu+eoRl/WScTnHMIHhGWz\nCGAWdKoaUm4zWOfk4Qh+cFTnBasECUvUD2VGddt53OO6gWOmXMSosEwQhvG+\nTS7i7R1SP3IOZmM4SCQj2U8suP+koDNqtImD33ZQnGGnb5KtMoAndN7xV5aI\nXeD+ANw7zdzr0ltBLBPol0BlW09h2i7ZSVrZ7nSEo6WH0HSD49qvvS4HsrGF\nEjDwiXaEjsSK2L5fEdArYv9Kr+8BxVYMsBRanFz1VXpqp9yi68rMKWsezfuy\nXeTUtj6/uaZPQvGLzRg+HiFUgbTnNjEeuXP3FCyE+D+mNv/gLcOwGSIhwMEY\nH+Cr\r\n=gK+0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.4.0_1547680208180_0.652316235770799","host":"s3://npm-registry-packages"}},"7.4.1":{"name":"@nrwl/nx","version":"7.4.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.4.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"e22fc7d406010776d7a40d8838da9c39b1934068","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.4.1.tgz","fileCount":44,"integrity":"sha512-xSW6lAmqQCkWe3w3OQm5Lq5CvzHBJ4qHHcz7eE3DqZmgjGpVxppfuqXFEWuErMjgGsC8QSE+AbxW8XPs6zyaCg==","signatures":[{"sig":"MEUCIQDntQ+rOvxqkDiDTIJPBpjjmK7JBXH7zEFU04+V+uHRAgIgVdyAY+AD8Ywbni72EWBHCsmAXrRvCZt1598Q560XvCg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":410207,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQijFCRA9TVsSAnZWagAAzVQP+gL3IQxAtiqX0BWSZY3v\nsAPdJJukv9/73Nuq1YrlrrLsgVFI94fzHaiNaG0kSx5YmV+ko0LW2bpgYsab\niebTTgih4WhhLczyKShEq1ESY/5wZcca9QOp9iIPr6ZxaPe4wkWPqycAUAYh\nYzIS2aHjHE2qjXvrR8mTXVSJXIDF95f98c0CFE3g857oXaJBsyXcMjd74LOq\ngZapOf0fxxf5kpCdTTejpu+vXswKBUy+5bPxlKqmVzvjTUf1qfrvTY/jvxeA\ngmv4ikaSMFH3kms8U8k9jTrGj1iGtKX1oXvSY7YPAYOARkEXhfI/P0EZ0Ysw\ndiZv0/VlwiLjCvXOthDJNh4WRXJSG2oaZSU9yXFMfXOB4FkEkesNnjblj+jD\nuuOrCr1kE9o1F1NtyODvTAy9iI9lD3h1mMCQv6ww4JpNmcXnNdTFW17pxvFx\n5G58857et8UyQk6t6okYau+pQa9IXuIf2vA0faULYb+qPfh1m1L6ingrFvq5\n2YtnoZDLTQ6LX4cf6pBMsWv74o5+kKFCHTv9Bw2FFzD9kywfhxKAv0Ssoz7d\nBk7OdVPrHKe84hMfWtUWO7USx6WEZFuY2Skef0BSLQ3lDgjFGglO/kfIPlxG\nkv0dVyEvGi5mk4Nf9PiLO3yXn/1gBYt9+1/cEbWa6Me2QsNC6k1KfxouRQuu\nNWUv\r\n=SPxb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.15.0","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.4.1_1547839684784_0.8003033504312458","host":"s3://npm-registry-packages"}},"6.4.1":{"name":"@nrwl/nx","version":"6.4.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@6.4.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"b42f09f703a43b64b29d88b4a61f486715900d00","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-6.4.1.tgz","fileCount":44,"integrity":"sha512-JUee7vqBIQh/lkpSJ2ETd7U+4g/zzBsPMZTox/3zv+tn60ARWaoKUppbWRMweWZ3uMexUQlYZD4CO2WWvn+MFg==","signatures":[{"sig":"MEQCIG2EPbk+3flyfVcB+qZPXgQuRsZHQRjnEkI1jSwLsILoAiB2KuAVAJNrIq6vDRn7AkA28io6rP2cOLvYY4owyhgKOQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":404419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRkB4CRA9TVsSAnZWagAAT5oQAJiBn4r1s46n0SbKiMon\npDBO1QqPMyo/7cEC5++Bz3lowvpj3Q7lAVgGfk4TgQoUGG6Z38k+bzbpORBM\nPmRN480VDeb6gW40iZjS+iFLDjtLM26YBzI5fTtlXD0Yx80FXYJgfkOXmlM9\ncLGkHRKYteEEyRZW5cs4BLOmlxQyPOxfpb5OY7a12HU9BoKKdqD6GMKeYJU0\nKCLEAoI4QGKFeZiefWPSUFZt8NTi0fUeYXycTTzI8AK2V9XD5I8Pv8xizA2r\nWt2TFOamh3HnQS/thW6wGbG6vrCaCe8+afaJfOMLrTP3vI3hPav4omoJAyGq\ncsb3Y+a/VLU5KoqeadlIjil03ZNnsO7D78rm4X4Q5kFPmxcdvlaTQh3Lrd9M\njq+/fjVW6pGrGaNSBIYyH8SKC9q1cUbf8NFplDekB2vUHx7LssNTt3ibtraC\n5+vtkWlMUOezs7en5gWSLArmgvlvOp7vJl/KqgdMxT9zaojkkvA0UmN3zUeX\nlQmc4XdtDf45MKjpF/mNd/Q+0KwhvuUXmz0cZ9P8rtCTskhjzIOGPrWfzH+3\n9BcOTUrnbsXISc7Kbg1UalN76fnF0P96aYVlvqA/OT8tPLqC/vid8GwwKuhL\n3x4RiAx4GG7EMtw8SpBkCOHsbPur+0JEc6vygUm3guTla41KGGvz+9siZF1G\nCfgO\r\n=lpY7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://nx.dev/angular/guides/nx7-to-nx8 on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.3.1"},"_npmOperationalInternal":{"tmp":"tmp/nx_6.4.1_1548107895435_0.9489353576723756","host":"s3://npm-registry-packages"}},"7.5.0":{"name":"@nrwl/nx","version":"7.5.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.5.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"250c80afe16fd664ac52c3eb1592e9955675c7aa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.5.0.tgz","fileCount":44,"integrity":"sha512-TBTjvUKLTqzUaEYFoyEu7z3HqhOrXMvseycjWIKIsWlRwaEL3V86vJaCoYWVZYT3nuK6sxQ/m/l08vjXRZKTCQ==","signatures":[{"sig":"MEYCIQDGNO9LjvhiscMODn5FJ7CWWQJ7JUeNLSKbwxvcAwF0ugIhAIYcJKZoT2Fat50bzGSsYGLKT/w1YgI6aEBk9N9p0i5N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":410211,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRyCwCRA9TVsSAnZWagAAENUP/2eweYTsvkH4F/qUaaj+\ny26x5x4ilRsQ+EdG2uV5oP7Hsfg+8feTMLtfRKZeteII/8OdiIcf6nsnz9Tv\n3fNMyQSt+yv6zpY+0M1k304U1JFf9n720bcBVFcKPOfQbp9e4Mc5GnzGePuW\nFy6s5lkgj0EZoAqPCRFd/I4kEJd3c5nPV6MWoX9eOQ4AowkCKFKCrAtEMSX+\n/TPOU5jXf+6gRfWgATTbHjwOjl04468aCskU7DBm5CgC+0IBCz/4U27mOdt1\nCH244YtF4TvCctmoYAcaHEkX05HLzVzpGA8Oi1iNIsNQmg5eB2Tye3Od9K/l\nnTquvU2cVZJNwev4duF+C+u03y/msSyBidU2avg6mjbzx+W09AIZx1F/baTc\nuH7/wW/L/PBQg6hF4BuZpKmq4jib6L556mH5MZmJXFypgNGCobVEocxFlDX+\n59qyxwWAEULq3inq/1OpIK4EttQ2C2AZRrrgK01r0lmULj5Bj7NIqsnc7gF5\nabx0dt9ttFjM7yC2TG8qb3YIXMjbqwBG4ts5eK6kNud5VrvTY5+/XXuerymL\nYq+bQYymyINUoZYi10sKEqiExYIyykR8HC9Sog5dKDHlTrSGkRraBGOvX4EV\nIJVEhiJJvSo5jo4nFv00OTNzxo26zENjIaHkY+z7iCR2zM2yXO2VSNr5sXiV\nYJy7\r\n=X1d5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.5.0_1548165296351_0.629722276254389","host":"s3://npm-registry-packages"}},"7.5.1":{"name":"@nrwl/nx","version":"7.5.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.5.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"890d7b79f5a6c9a564d18fe28e841e3e7ecdb0d0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.5.1.tgz","fileCount":44,"integrity":"sha512-OegS/kwlClfCcaffVtYuTDz6zMJzrOLlVotblgPfTRd4CJrylN3wLbPlM8U80XoGSpQTKCyfzzPlKsu6ikp7rg==","signatures":[{"sig":"MEUCIQCkRx2lQytxdZyCP9pFquV/veD24ePuelLGmfUwdyJfuwIgKzkz1Fjs7UIEiWkAtin8tGluM2D25VqdK+pmg6RIlkc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":412456,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcUbhxCRA9TVsSAnZWagAAfZYP/jRULke2186t3ltmKo8Z\npy4cMeypzkhYbvKhkS+Wv7VtlzfyX6pugxW0tl8SDd1NevFHNQEoFNYKf1pz\nZiz0VJe+1YuDBejAj8Loj8Egr5Lg8kJDu93IKKiK9PEFa6jWt+ED6sOOBNus\nTj9W3f4zikViCcxeFpJGgrBOSZLVpFaQEuQVizx2IEc6mjXB8Zhqcam5qFFg\nyfTmEmzC0gWXvJ+h32tukyd8i5p2h9jF+hE7VsEYe/CnJEvxTxI3Xr1XzyM6\nq0O8OXpfjLwJGZeYifAPeeVAwC91gtyxGfQWAgpEdn3JXoPKZPosJer+ikWW\naglUPh6j8hByOtOcP9qjOG4664viEfOe01qGCJ4lio5qxhOD7XcmRl6O7AHL\n4hegD7tinHQHy7szvwvhyl2f3lObF91PH7xjWpQ3zAw9UpSoWkgIDPKTmGBc\nWj2to9IcnATv29Ui9lslexh6KiLFNs+oSNTfPpF3p5zUsNR4iXwdQO6AvnLK\nwHdYV9qobhrRMCdcoll7LMkJQNZkOeAQy5Wun05/bjZo0VsdqIPXz/w3jrfO\nE4Jhf7EiveCHjciu6njLpOaGK01mhTNB7Us9xs+iX3osIMUXwJtHetp9FI+p\n3VeZdplCRRlNYj4eqYxq1VfyZovCE4s7B5s3TLwl62qfGTyB1dJXQQZWWGAO\n4jVH\r\n=LHn0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.5.1_1548859504928_0.522314183605866","host":"s3://npm-registry-packages"}},"7.5.2":{"name":"@nrwl/nx","version":"7.5.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.5.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"df8c8d68d2645b20ac9ce054938a0371a2c3f4ba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.5.2.tgz","fileCount":44,"integrity":"sha512-z0xWeHKNic/lEusP1pwgbv7bIB2UvT4Yc/GMAUH/wD/Y8E8L4lc3Y64cofwrvE3WJTY4ainsvYH/XkFqAOPxpA==","signatures":[{"sig":"MEUCICVL50kM3/T49+kts1U36m2vOmNCa7/LW8XsRkP7/MzSAiEAzutYniQHJLFyEiLBqgvyfbpH+g5Lc/IyF0mISGTs7rg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":412456,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYv8JCRA9TVsSAnZWagAAQSgP/RkH0IUF/ioguzyF5PYq\nRJaCDjcSVk8GcQo/0djuO7Dqo2M4FW2QVl9ZOlKnGr9SrWJf5i9aBt0Vtq98\nAe5sF7iGKakDhAEhN4YeUwMQYXXlXLZhXO4RXCxuOw/YNCP4BigBMpG34Pla\nK3/DDOU3Q7TkpVUy0qsd+OOS3xpkTy++oylaD7IxuLhmuhliH9+ZuLamPGPO\ndoy6xr1DVnbxRb2gT2Suhh3BhLM2AUuJsAkEUmvzQMI3yHSlS/IEVmYII4p7\nJ4H1nWLzH0EGwuPC7OAMU4bWnbXM0sVBiH6AX6zuoWEKrdV0BlfvCAnO4Ecb\njWPPPwmtrRmcKlbzF6xzT7GTevV3E3paSVqvXT4eTn52/sO4gzyue1xrVrut\nZB/FuHGe0M7W2dybHhKtr8kNAYx2Vl0SYHlkBb84AiKtLsY/rqolQuVY4kpa\nWOWfd7qlA9l6ZKibizAWC3LaGfzxe4qgIiOozETy83LaX4tjcXQQdaJFACBi\nhkGywHbu4wFyEdDFfkdyNF/IlMjqEEKNRT8Gpbx46dKgU9vKU3s0Fbd7tpoR\nDz0LR/4E/1ObG+QZOELx1U6+ulejrL40n9TsoM4bG0Feeclh6e5kvzEQ+90T\nSjGobExwfs2jO1IV8IrSJacz4hLgYmmJ/MzmtvMaHuCrBk603OLJ5NqqA4xg\ncGa6\r\n=wkEV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.5.2_1549991688407_0.7240567974710781","host":"s3://npm-registry-packages"}},"7.6.0-beta.1":{"name":"@nrwl/nx","version":"7.6.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.6.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"d7a694f8d4d1cceff8edfcefb028da7a29a7aa61","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.6.0-beta.1.tgz","fileCount":44,"integrity":"sha512-zOlc5ghkaD07VoZRTMebuzJBL7vGrcKUMP/Utr7lpRqs7RdvrMcNf5k9aASEKK7QDpPy3ZNPRDOgzbD/fMq0rg==","signatures":[{"sig":"MEUCIQDhY4ZHjxrDUV8SpZmd1YUCFbt3ysHDxpPdHDohh6QlzgIgGvlsU4wX3DumGYOaDsIURYF0+qPrwzaxQKmfoq+DuFA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":412425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZYFUCRA9TVsSAnZWagAA1AkP/1AuXB0CPCa08Qh2BEGF\nRIPb60a2eBVVWSqMjjZuaOIPreemoJj4BJsnbCjKayKZbQRH4cAN5hPs3cpg\nspkUFc61idv3oJhohDaC+41Dslenmh7GBL1PBd5Ib/k+3xmrea8CUwuZOm5U\nsbxjgXIj1JpdiwVf+darp8PSatTcoWAqWKMdOiXgt+suMtk1fxhC3p6aCmrN\n4y3iEbR01CcZ0efxuB9Ge+MDwvUdQ0rzdFPfAawpPJMbXf3W84XqTwrEh91n\nTpqI1VueqZmTJOFgJ8K7fUUazUEUq0p6RnH10/XxJOS9XrpfpEMYhkGVaZvm\nZNv9lFkapd2+JYlb7PtPTf6AXTUeqRHvuJMWOZmX+EyJf4weWO01FNVxrST6\nOeDiRcM1fHc3G9NyZuJQoXOb1cNCzHXSDvturC8a0u1N12P/X3HuQYXhK2pr\naSC0rv9TcVwoslFMvnDsYFOC29ipU5gkgD87vK1eSvijAZ0FNJ8VR6h0n+Us\nqwedN8Gt2iV1orqxnteyGvX3Iz1U1GyynBFT/9sjBmOBql5CDDB3xCmtsDpH\nUo0cziVw8zmCvevqjCGSxRJA5uyNuVo/7WORJmX1k383rxOmRw98KfGChGMV\na+Sj3n6T4tVXshzfCfdNI8OoF1ac1Q+COQrnhlvxDBkS37r3CMNZ09ZEs16o\n0j2Q\r\n=N5ax\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups that transform the CLI into a powerful tool for full-stack development.**\n\nWith Nx, you can:\n\n- Build full-stack applications using Angular and Nest\n- Use effective development practices pioneered at Google\n- Use innovative tools like Cypress and Jest\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n## Features\n\n### Full-Stack Development\n\nWith Nx, you can build a backend application next to your Angular application in the same repository. The backend and the frontend can share code. You can connect them to enable a fantastic development experience.\n\n### Use effective development practices pioneered at Google\n\nUsing Nx, you can implement monorepo-style development--an approach popularized by Google and used by many tech companies today (Facebook, Uber, Twitter, etc..).\n\n_Doesn't Angular CLI support having multiple projects in the same workspace?_\n\nYes, starting with Angular CLI 6 you can add different types of projects to a single workspace (by default you can add applications and libraries). This is great, but is not sufficient to enable the monorepo-style development. Nx adds an extra layer of tooling to make this possible.\n\nIn addition to using the monorepo, Google is also known for its use of automation. Nx adds powerful capabilities helping your team promote best practices and ensure consistency.\n\n### Use Innovative Tools\n\nTools like Apollo, Cypress, Jest, Prettier, and Nest have gained a lot of popularity.\n\nIt's not the case that Apollo is always better than REST or Cypress is always better than Protractor. There are tradeoffs. But in many situations, for many projects, these innovative tools offer a lot of advantages.\n\nAdding these tools to the dev workflow is challenging in a regular CLI project. The choice you have is not between Protractor or Cypress, but between a hacked-up setup for Cypress and a great CLI setup for Protractor. Nx changes that!\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n# Getting Started\n\nNx is just a set of power-ups for Angular CLI, **so an Nx workspace is an Angular CLI workspace**. This means that it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```bash\nnpm install -g @angular/cli\n```\n\nor\n\n```bash\nyarn global add @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the `package.json` file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run `npm run ng <command>` to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```bash\nnpm install -g @nrwl/schematics\n```\n\nor\n\n```bash\nyarn global add @nrwl/schematics\n```\n\n> If you want to work with the version still in development you can use `@nrwl/schematics@next` as the package to install.\n\n## Nx Workspace\n\n### Creating an Nx Workspace\n\nTo create an Nx workspace, run:\n\n```bash\nng new myworkspace --collection=@nrwl/schematics\n```\n\nThe `ng new` command uses globally-installed packages. Anything installed globally can be in a messy state. If you have any problems running the command above, you can also run:\n\n```bash\ncreate-nx-workspace myworkspacename\n```\n\nThis command still runs `ng new` under the hood, but it does it in a sandboxed environment, and, as a result, never fails.\n\n### Adding to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```\napps/\n    myapp/\n        src/\n            app/\n            assets/\n            environment/\n            favicon.ico\n            index.html\n            main.ts\n            polyfills.ts\n            styles.css\n        tsconfig.json\n        tsconfig.app.json\n        tsconfig.spec.json\n        tslint.json\n    myapp-e2e/\n        src/\n        tsconfig.json\n        tsconfig.e2e.json\n        tslint.json\nlibs/\ntools/\npackage.json\ntsconfig.json\ntslint.json\nangular.json\nnx.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more apps and libs in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nrwl.io/nx)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.6.0-beta.1_1550156115866_0.8584018594108793","host":"s3://npm-registry-packages"}},"7.6.0-beta.2":{"name":"@nrwl/nx","version":"7.6.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.6.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"50be5983ae87af6546b4c0d4771f8a7112745d74","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.6.0-beta.2.tgz","fileCount":44,"integrity":"sha512-o57Pbb287iEXG9s1wRCeA6b+TlilHBEGbU5m+40l0qyZLcxTglgoklYVUM5uUs4ud4BWMnk0fMXAl3yHha9xoQ==","signatures":[{"sig":"MEQCIAYK3RWDDQXxii3TiS8lRXMzQc41V7bsG4WLYGKRxe3VAiBaP1JOe883r2JsTYNXKCmtzeXXjbSsyv92McoWei2+KA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":412430,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcabzoCRA9TVsSAnZWagAA5IQQAIMVFs3g2qrSeLpH/k2p\nq60lIgUFBYtDbButGb1fBX6ToGxCfD2GR+czafISR5TDauFoboVAaVqYZ4Pd\nEgf3ZsNc1TDzWOKIkAi3DSiG3FKAGcjWhIN7qpuqL3KWfKzbKbX46bCEXOAK\n3qhVPOL3TDH/NxomPiHNbAQtmcFfadt7NXZYhrzVto2lX9AnGre7oQ1iEVDl\nCxdYo0BMwnEJGBiElg7lnpqv2jb/IroaB4O7Gr5ImKflEhTd/nW4iyPSHXZn\n2KATegilqtF4K3J+U756qj88ANa61G/iuOmqKbgTAVtwsg7wuYh88zdT/fEa\nzn7ZaFvAm4zjG2k454SSqMKEtur0gr06QFaJ29QnQcyXPE0TPr9qwnGMUQao\npfDadigOwxaLjA5ZDE7lMeoehKAxRmOSpEQAXEQDiwkFCg5HqpKGKRzomH9N\nAh4DXxfBlvWIv9zvA0aUnFHbogfoF8JvS6AmOIaTXleZCKrfvPU6Z8Lj5nNP\nOD9gD6X9EkyBTM3lLIl5TF7Qn3ZwdQaRxSTPYumIlCaIVYOEudLkIzvmP/tl\nfN2UQ7i+OqeGpD7K6VJGLSBmlcDj5RskJmmVoLuC5ACEdG44HOYoOkYaXv0k\nGoeduqYtvddjzRVGHL7fXXnmJr7JLsQY7kEkRk7RZYHj1vpBcYs2V/UoBE+H\nycct\r\n=wu7A\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups that transform the CLI into a powerful tool for full-stack development.**\n\nWith Nx, you can:\n\n- Build full-stack applications using Angular and Nest\n- Use effective development practices pioneered at Google\n- Use innovative tools like Cypress and Jest\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n## Features\n\n### Full-Stack Development\n\nWith Nx, you can build a backend application next to your Angular application in the same repository. The backend and the frontend can share code. You can connect them to enable a fantastic development experience.\n\n### Use effective development practices pioneered at Google\n\nUsing Nx, you can implement monorepo-style development--an approach popularized by Google and used by many tech companies today (Facebook, Uber, Twitter, etc..).\n\n_Doesn't Angular CLI support having multiple projects in the same workspace?_\n\nYes, starting with Angular CLI 6 you can add different types of projects to a single workspace (by default you can add applications and libraries). This is great, but is not sufficient to enable the monorepo-style development. Nx adds an extra layer of tooling to make this possible.\n\nIn addition to using the monorepo, Google is also known for its use of automation. Nx adds powerful capabilities helping your team promote best practices and ensure consistency.\n\n### Use Innovative Tools\n\nTools like Apollo, Cypress, Jest, Prettier, and Nest have gained a lot of popularity.\n\nIt's not the case that Apollo is always better than REST or Cypress is always better than Protractor. There are tradeoffs. But in many situations, for many projects, these innovative tools offer a lot of advantages.\n\nAdding these tools to the dev workflow is challenging in a regular CLI project. The choice you have is not between Protractor or Cypress, but between a hacked-up setup for Cypress and a great CLI setup for Protractor. Nx changes that!\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n# Getting Started\n\nNx is just a set of power-ups for Angular CLI, **so an Nx workspace is an Angular CLI workspace**. This means that it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```bash\nnpm install -g @angular/cli\n```\n\nor\n\n```bash\nyarn global add @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the `package.json` file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run `npm run ng <command>` to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```bash\nnpm install -g @nrwl/schematics\n```\n\nor\n\n```bash\nyarn global add @nrwl/schematics\n```\n\n> If you want to work with the version still in development you can use `@nrwl/schematics@next` as the package to install.\n\n## Nx Workspace\n\n### Creating an Nx Workspace\n\nTo create an Nx workspace, run:\n\n```bash\nng new myworkspace --collection=@nrwl/schematics\n```\n\nThe `ng new` command uses globally-installed packages. Anything installed globally can be in a messy state. If you have any problems running the command above, you can also run:\n\n```bash\ncreate-nx-workspace myworkspacename\n```\n\nThis command still runs `ng new` under the hood, but it does it in a sandboxed environment, and, as a result, never fails.\n\n### Adding to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```\napps/\n    myapp/\n        src/\n            app/\n            assets/\n            environment/\n            favicon.ico\n            index.html\n            main.ts\n            polyfills.ts\n            styles.css\n        tsconfig.json\n        tsconfig.app.json\n        tsconfig.spec.json\n        tslint.json\n    myapp-e2e/\n        src/\n        tsconfig.json\n        tsconfig.e2e.json\n        tslint.json\nlibs/\ntools/\npackage.json\ntsconfig.json\ntslint.json\nangular.json\nnx.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more apps and libs in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nrwl.io/nx)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.6.0-beta.2_1550433511403_0.01833067140182565","host":"s3://npm-registry-packages"}},"7.6.0-beta.3":{"name":"@nrwl/nx","version":"7.6.0-beta.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.6.0-beta.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"606ec8c94f20a2c73166ca469ef570a57a8c65df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.6.0-beta.3.tgz","fileCount":44,"integrity":"sha512-6BLgsF97g0Yp3UMTNknbKbd3JbG+OEW0rnUeoCSoPuu/YDF2NU+STLkAlCmhOnTTnkFYk+ObokE5d3qXlSbM4Q==","signatures":[{"sig":"MEQCIADXhxrf9jh7NzSDEI1/04CDxinVHPA2m9BcERJHL3E2AiAify/KGeQDUXRx46e9wz5Utnl/ZG3VaEJqn3M0EMrhVw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":412430,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcas8oCRA9TVsSAnZWagAAX0gQAIPsrX7ZNd1FUJExdELB\nCZy8stzTJPj03I1Ef/ZocHJVF9W4GWalvhyQO9M08VigzXrE64bqPPrgCvGN\ngWChTZhfXtIQgjaL0EO7hDr/UAMnOVsW6WH0uejLPIdCtN03RTQngQUTNzYa\nBgTm60FImDSHVh+eVwukYhPYGx1qjFZG4kJ9oQdgXznTEELGc0qsMo9MNbXy\n947PNAO3ZfL8mcP4nMetwVxb0Ti9YrXpmDatz4bKVAjKtB5mINq3yZ0NdRSF\nx/PWajUvBOxgfXU97T+EP1R4ZucdmOvBcFNDoHv5b7wsSc46Ut7snR+IlGpn\nhBgyHnUpVs5+9OgujdAWlFeVfQJZB03dZWvOX95yueygjXXK+tZQCxAkG5s8\nHghcVM/rxKGpHamfO7Bm7OC2u7CsdxCgLZwL0OsrVN13TnOgid/m+9s1WJpf\nAQFvPbpVXEAdGm32jP78I1ASqBP5tbQiGeADa+dQ+wbA52pKuf83ajlUeNSs\ni4DwlvPL805sGblnlV4FYDel/YEjvagCPV1c8nSvAM8v1zOLkDw4CL0YAEwn\njVWqHcNqI+0ZxARcRMtsGfJyOzhwet8u59Ekv7i1WebqPbgO/G2SJnCu3c/0\nMFWid8t46G9XVD/WMih98iXRU2ORjtfkK9FTB8f3b/IkkiQk+m8J7pXE2Dxe\n3pt+\r\n=tonk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups that transform the CLI into a powerful tool for full-stack development.**\n\nWith Nx, you can:\n\n- Build full-stack applications using Angular and Nest\n- Use effective development practices pioneered at Google\n- Use innovative tools like Cypress and Jest\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n## Features\n\n### Full-Stack Development\n\nWith Nx, you can build a backend application next to your Angular application in the same repository. The backend and the frontend can share code. You can connect them to enable a fantastic development experience.\n\n### Use effective development practices pioneered at Google\n\nUsing Nx, you can implement monorepo-style development--an approach popularized by Google and used by many tech companies today (Facebook, Uber, Twitter, etc..).\n\n_Doesn't Angular CLI support having multiple projects in the same workspace?_\n\nYes, starting with Angular CLI 6 you can add different types of projects to a single workspace (by default you can add applications and libraries). This is great, but is not sufficient to enable the monorepo-style development. Nx adds an extra layer of tooling to make this possible.\n\nIn addition to using the monorepo, Google is also known for its use of automation. Nx adds powerful capabilities helping your team promote best practices and ensure consistency.\n\n### Use Innovative Tools\n\nTools like Apollo, Cypress, Jest, Prettier, and Nest have gained a lot of popularity.\n\nIt's not the case that Apollo is always better than REST or Cypress is always better than Protractor. There are tradeoffs. But in many situations, for many projects, these innovative tools offer a lot of advantages.\n\nAdding these tools to the dev workflow is challenging in a regular CLI project. The choice you have is not between Protractor or Cypress, but between a hacked-up setup for Cypress and a great CLI setup for Protractor. Nx changes that!\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n# Getting Started\n\nNx is just a set of power-ups for Angular CLI, **so an Nx workspace is an Angular CLI workspace**. This means that it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```bash\nnpm install -g @angular/cli\n```\n\nor\n\n```bash\nyarn global add @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the `package.json` file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run `npm run ng <command>` to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```bash\nnpm install -g @nrwl/schematics\n```\n\nor\n\n```bash\nyarn global add @nrwl/schematics\n```\n\n> If you want to work with the version still in development you can use `@nrwl/schematics@next` as the package to install.\n\n## Nx Workspace\n\n### Creating an Nx Workspace\n\nTo create an Nx workspace, run:\n\n```bash\nng new myworkspace --collection=@nrwl/schematics\n```\n\nThe `ng new` command uses globally-installed packages. Anything installed globally can be in a messy state. If you have any problems running the command above, you can also run:\n\n```bash\ncreate-nx-workspace myworkspacename\n```\n\nThis command still runs `ng new` under the hood, but it does it in a sandboxed environment, and, as a result, never fails.\n\n### Adding to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```\napps/\n    myapp/\n        src/\n            app/\n            assets/\n            environment/\n            favicon.ico\n            index.html\n            main.ts\n            polyfills.ts\n            styles.css\n        tsconfig.json\n        tsconfig.app.json\n        tsconfig.spec.json\n        tslint.json\n    myapp-e2e/\n        src/\n        tsconfig.json\n        tsconfig.e2e.json\n        tslint.json\nlibs/\ntools/\npackage.json\ntsconfig.json\ntslint.json\nangular.json\nnx.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more apps and libs in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nrwl.io/nx)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.6.0-beta.3_1550503719589_0.49406115041135723","host":"s3://npm-registry-packages"}},"7.6.0-beta.4":{"name":"@nrwl/nx","version":"7.6.0-beta.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.6.0-beta.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"1b48ce64de90c686f0634e417ea06c81703f9f64","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.6.0-beta.4.tgz","fileCount":44,"integrity":"sha512-5MmIqZNRNUY66fjfES86DfwK2YfIwWhlSciM7wd/+F1c7aqvds765qvawe8rE5UXDPJZHD/sPPwABJs7KMli4Q==","signatures":[{"sig":"MEUCIAk4Vl8mBf7uG+eEgfEcDHyKJ8cLGlGbjpQ6qos3EJqgAiEAy7EJ+0W5a9GDpswrx87WY1ffytPYv0ISLpJdrWTpFeo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":412430,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcazAGCRA9TVsSAnZWagAA8gMP/3W5Aq64bWGrHjzK0Jhl\nrDOpgzmrEa6rk0XWCyNQdyzpmGEC8MLOtBilKQriqVo82SpaseTnF76iPMR+\nRkH/oSfDEQ5Vhxf/fEPkwiqUgrLWHmt3EbbHabRYVoyUd7r/MwXRHd4SknoW\nUBKEDTzLe2JGyVgSikre5A4Gm0uPTf85UP4SU71Qn50QJ/cMsAuh7iEDw4Ve\ncG+AUTs1126iyo8a8ZPQ/Mlqx7g+4+uPmPRTbrMADmF2W5/88PZha0XpkNXV\nh76Bm6Dn2UQFCPB03v/3NHWOBeZ61594dh5gtx6AyoDoRiY+QaiyJSxFdhuN\nZHOlkGz0nYpLZh2/T2b9LPGYltF/6EqZcd6jBTrICFvVJT8TTt97DtRfbnhP\nBwdTioGpqzIUy7i6HFrcqYoTeERIo+pkP/iTJnya2Rl3aDsBuhq0uxs66mtR\nONDSuFcDrUClNJVnBwLf1d+pYVLBP9R5z/zM5b3xWZ//AZfND7jk7/FCzYS5\nl2ZRejfx1rAEQEAfp9U0oMUb8xXWVjyHVThZ+BgVgfMCIRxpBcuWWw1V8oQn\n1F9Gq/Vo4fzxJU/XeSoPIWhUR4gHAo76ZIKxzgslEXbNpmKxZpJT8/2gJbvp\nqti1LFUVQudhk3x+A1xXKwNihOBH5idSRhj3a+RiHL6XkA7BgsrDWrsDyDMX\nJePL\r\n=x4nQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups that transform the CLI into a powerful tool for full-stack development.**\n\nWith Nx, you can:\n\n- Build full-stack applications using Angular and Nest\n- Use effective development practices pioneered at Google\n- Use innovative tools like Cypress and Jest\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n## Features\n\n### Full-Stack Development\n\nWith Nx, you can build a backend application next to your Angular application in the same repository. The backend and the frontend can share code. You can connect them to enable a fantastic development experience.\n\n### Use effective development practices pioneered at Google\n\nUsing Nx, you can implement monorepo-style development--an approach popularized by Google and used by many tech companies today (Facebook, Uber, Twitter, etc..).\n\n_Doesn't Angular CLI support having multiple projects in the same workspace?_\n\nYes, starting with Angular CLI 6 you can add different types of projects to a single workspace (by default you can add applications and libraries). This is great, but is not sufficient to enable the monorepo-style development. Nx adds an extra layer of tooling to make this possible.\n\nIn addition to using the monorepo, Google is also known for its use of automation. Nx adds powerful capabilities helping your team promote best practices and ensure consistency.\n\n### Use Innovative Tools\n\nTools like Apollo, Cypress, Jest, Prettier, and Nest have gained a lot of popularity.\n\nIt's not the case that Apollo is always better than REST or Cypress is always better than Protractor. There are tradeoffs. But in many situations, for many projects, these innovative tools offer a lot of advantages.\n\nAdding these tools to the dev workflow is challenging in a regular CLI project. The choice you have is not between Protractor or Cypress, but between a hacked-up setup for Cypress and a great CLI setup for Protractor. Nx changes that!\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n# Getting Started\n\nNx is just a set of power-ups for Angular CLI, **so an Nx workspace is an Angular CLI workspace**. This means that it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```bash\nnpm install -g @angular/cli\n```\n\nor\n\n```bash\nyarn global add @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the `package.json` file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run `npm run ng <command>` to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```bash\nnpm install -g @nrwl/schematics\n```\n\nor\n\n```bash\nyarn global add @nrwl/schematics\n```\n\n> If you want to work with the version still in development you can use `@nrwl/schematics@next` as the package to install.\n\n## Nx Workspace\n\n### Creating an Nx Workspace\n\nTo create an Nx workspace, run:\n\n```bash\nng new myworkspace --collection=@nrwl/schematics\n```\n\nThe `ng new` command uses globally-installed packages. Anything installed globally can be in a messy state. If you have any problems running the command above, you can also run:\n\n```bash\ncreate-nx-workspace myworkspacename\n```\n\nThis command still runs `ng new` under the hood, but it does it in a sandboxed environment, and, as a result, never fails.\n\n### Adding to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```\napps/\n    myapp/\n        src/\n            app/\n            assets/\n            environment/\n            favicon.ico\n            index.html\n            main.ts\n            polyfills.ts\n            styles.css\n        tsconfig.json\n        tsconfig.app.json\n        tsconfig.spec.json\n        tslint.json\n    myapp-e2e/\n        src/\n        tsconfig.json\n        tsconfig.e2e.json\n        tslint.json\nlibs/\ntools/\npackage.json\ntsconfig.json\ntslint.json\nangular.json\nnx.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more apps and libs in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nrwl.io/nx)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.6.0-beta.4_1550528517316_0.9993177271745197","host":"s3://npm-registry-packages"}},"7.6.0-rc.1":{"name":"@nrwl/nx","version":"7.6.0-rc.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.6.0-rc.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"ced4ce23c41323e1663ca3cf8c950df266604377","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.6.0-rc.1.tgz","fileCount":44,"integrity":"sha512-5/gFdSguaISEm8XRzAph2yLRdW3hoBIzpHJKAhac9q9AQ4GwSACOANuseZIOLrDYvkaAd829f/Mzsyf4q/2lrA==","signatures":[{"sig":"MEUCIFlJez0Ba6bWxBBbVGkZQwX7Xrd5G7nfF8Uvx6O1sjeHAiEAw+GsNvJlECx+J3XLE8bybTtAH0maSdat9nU0qq9Xqw8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":412428,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbGe2CRA9TVsSAnZWagAAMuUP/RLvBEJrs7Bi29dQ4NRA\nloioZjENtM+fk7KJNoUbCcHEXTKhcJOXIGgK6RArecRZWWzh8Ph6TM1upRtg\noMN4A3JGOpl0fUZZZULYvkhTLrJgBh+CltB7txx0p5muIv3TCfGapezRPhx7\nXSC4qrUBS/cKchrAVRND3ScmjIzq/jGfhoPVRFHRa3B/g9rZeG+pjVVKGKri\nfs6WhlX+mjffY08CY3V0M+N1c/NAtpiiCUkhHUrt0EGCjA4PeXkGGDFTr2Q/\nj03TODMeZCoUvXfobvb0K+lWQL8zEGPVznSSZImBzxnsW2DxHO0ey9SUBcS1\nENnUy30ZyWY9m/8Lq3uECMVP/YXmG7znQxqR9aRHW9bLw4ZXaFcAA7EUXT0Z\nDSH/UchfNJlzK1ZUGJsgcj8VDJA/K6UglDonxX7xDQY3gSOsmTrJjtZLU9MQ\nlPRNEKBG/nfJKT03FOCOoQhJSYK38Br4OvQtULDt/VRHRNDZNhpQ3fkT+U5O\nGrJ2s4UXNq2ZgeWr5YoChdHFlhLVRy/VAplIXhXozmk7BJy5qQMRoebXzEc0\nROOOog8SftWTFYuvXMHlfOmNV4weItf9M1VZjesLNAzRYN8Wn02mcJGTfgy9\npz9TOCHvgpZXU3nTj+7fkxADr1kEFA5dPKrV4t9zbjM9c3yjXLoVW40skztP\ngC2c\r\n=Y4d4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups that transform the CLI into a powerful tool for full-stack development.**\n\nWith Nx, you can:\n\n- Build full-stack applications using Angular and Nest\n- Use effective development practices pioneered at Google\n- Use innovative tools like Cypress and Jest\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n## Features\n\n### Full-Stack Development\n\nWith Nx, you can build a backend application next to your Angular application in the same repository. The backend and the frontend can share code. You can connect them to enable a fantastic development experience.\n\n### Use effective development practices pioneered at Google\n\nUsing Nx, you can implement monorepo-style development--an approach popularized by Google and used by many tech companies today (Facebook, Uber, Twitter, etc..).\n\n_Doesn't Angular CLI support having multiple projects in the same workspace?_\n\nYes, starting with Angular CLI 6 you can add different types of projects to a single workspace (by default you can add applications and libraries). This is great, but is not sufficient to enable the monorepo-style development. Nx adds an extra layer of tooling to make this possible.\n\nIn addition to using the monorepo, Google is also known for its use of automation. Nx adds powerful capabilities helping your team promote best practices and ensure consistency.\n\n### Use Innovative Tools\n\nTools like Apollo, Cypress, Jest, Prettier, and Nest have gained a lot of popularity.\n\nIt's not the case that Apollo is always better than REST or Cypress is always better than Protractor. There are tradeoffs. But in many situations, for many projects, these innovative tools offer a lot of advantages.\n\nAdding these tools to the dev workflow is challenging in a regular CLI project. The choice you have is not between Protractor or Cypress, but between a hacked-up setup for Cypress and a great CLI setup for Protractor. Nx changes that!\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n# Getting Started\n\nNx is just a set of power-ups for Angular CLI, **so an Nx workspace is an Angular CLI workspace**. This means that it will be handy to have the Angular CLI installed globally, which can be done via npm or yarn as well.\n\n```bash\nnpm install -g @angular/cli\n```\n\nor\n\n```bash\nyarn global add @angular/cli\n```\n\n> Note: If you do not have the Angular CLI installed globally you may not be able to use ng from the terminal to run CLI commands within the project. But the `package.json` file comes with npm scripts to run ng commands, so you can run npm start to ng serve and you can run `npm run ng <command>` to run any of the ng commands.\n\nAfter you have installed the Angular CLI, install `@nrwl/schematics`.\n\n```bash\nnpm install -g @nrwl/schematics\n```\n\nor\n\n```bash\nyarn global add @nrwl/schematics\n```\n\n> If you want to work with the version still in development you can use `@nrwl/schematics@next` as the package to install.\n\n## Nx Workspace\n\n### Creating an Nx Workspace\n\nTo create an Nx workspace, run:\n\n```bash\nng new myworkspace --collection=@nrwl/schematics\n```\n\nThe `ng new` command uses globally-installed packages. Anything installed globally can be in a messy state. If you have any problems running the command above, you can also run:\n\n```bash\ncreate-nx-workspace myworkspacename\n```\n\nThis command still runs `ng new` under the hood, but it does it in a sandboxed environment, and, as a result, never fails.\n\n### Adding to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```\napps/\n    myapp/\n        src/\n            app/\n            assets/\n            environment/\n            favicon.ico\n            index.html\n            main.ts\n            polyfills.ts\n            styles.css\n        tsconfig.json\n        tsconfig.app.json\n        tsconfig.spec.json\n        tslint.json\n    myapp-e2e/\n        src/\n        tsconfig.json\n        tsconfig.e2e.json\n        tslint.json\nlibs/\ntools/\npackage.json\ntsconfig.json\ntslint.json\nangular.json\nnx.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more apps and libs in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nrwl.io/nx)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.15.0","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.6.0-rc.1_1550608309593_0.5157329469399006","host":"s3://npm-registry-packages"}},"7.6.0":{"name":"@nrwl/nx","version":"7.6.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.6.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"75b1c61344f54fde80ad1a6c7291fe9e669a4829","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.6.0.tgz","fileCount":44,"integrity":"sha512-oJjBCzo+2P9oHUJzdT7uVUmVqDDq1KkilwfeD+l81xavvTRp03gmOWrvosoirC0I8BX2Qzf5e7vw8JLiQD9X3w==","signatures":[{"sig":"MEYCIQDVaTQDfgIkj1lbK2nq5xpRNETjfOeffp3VP2MJTZZHJQIhALVqAYDn+75zvAt8JT4nKG3Hzkga0xnlZZtVw4LlDz2b","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbqWyCRA9TVsSAnZWagAAONsP/3wCNf2B4rOIW4Tj9bDC\ne1cV3DBFqBxZK9cFKEIeCFejPGSGrgSOwPir1O/gGHc3f4USePrZWxdhgUTI\nQzwg6VjUrSAUyg9Onk8EL90BPcq0Gw2m1BnaTvVVfCBT2++b6VpRQyw0guEC\nhVPhzgfuHDmkKp81RcjGnmknkDpLNIcIvJRguhCdSvEGdb5Cd/+BMuYxoWd6\nzr12SGwaMupX7F2k3MTjpDmj6z/3cS+pS/qsZdrHt07JwYT6oaXkIDFzlejy\nIWxbZCTWV60ohNV1U1dnMtrjpJCofa66LM31aY1pnCvTslLhGeQh7c5fj1J8\nmvm9yzHvbvw+vH7Tcx5JPbyp0LAGG1rCgfv1fGU7pbYrdN7d5FlGwVJvhu0y\nPGy2e3tUzZbYZXondDAkJxbVYSnOHHbV54HxR3xoS2fh8buLHpnBDlOO2E7Q\n6n/aCyw47WP0iH8gDmk80VqsFkjUfHShtLyi7j7rNyUrBYXNwwCPFCoFR9Un\niwJva12+WOii+my0yZM5FjJGYkRCw77D2isHvTy1lFQoRqG1zse3exPO+mXj\nyGwaegAwCUc7jxkwZHn88WbtAJp/U+sx75AYn8Iw8rFeHskaGOleiLWeTt2t\nUoUCPCbI3ChZPbbWeRuWg5gJ3njNx5Yan2wci6/FSGFKvACYadK1ylaUnt9+\n78Oq\r\n=XuQW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.6.0_1550755250089_0.2723726234664712","host":"s3://npm-registry-packages"}},"7.6.1":{"name":"@nrwl/nx","version":"7.6.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.6.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"a2d1c81bd02deadfa05af788708a8e8c89c455f8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.6.1.tgz","fileCount":44,"integrity":"sha512-Z0dxoYDYktzaoM9uqBoTqMFsH1XhiGZfxG8v0M8UC+YDPBIJZUO8P1lmORNuuAn9H5rDwqMwMUBdoEccnU+maQ==","signatures":[{"sig":"MEYCIQD1o4s4XGamYKED+TQnVOz6gSD+r8b5KUvZJigWXboeEwIhAOL/MR3aMnZ3SJgYbopbGgfsMgNVvq6BupdfqLwj9EEw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccE0jCRA9TVsSAnZWagAAST4P/RysEUXZzviyVeTqWmIq\nOx+RCGKySoozPnq0jJZu9ls1u6PHd/IvwOiAA6+sjmwsXFaDE2VZiLZkMoD4\nGa++fNIT0/fmMUzSG52Qgc+VmByeFSTRjUz/bCEfdrqFclpfpnX0+uN5iw9U\nadGVURXm2I/hM6wsi8sGP+t3WZZah0OddQnWgtqgUvYjPXHj97FBmBmf8MZH\nokc7z5xOUwaK4vUhLAHZoyPRwM1F0Ay69ywAOXuP64IZHerYcX4+X0qGGLV5\nU1lZLS0B22vbmRwYTOvDlwSlTFpOqYNlSxy9dImpXjtcU7L4luvftMJfxQ7N\nuXEDxYF4J7Qo2GMAa6jyrthfxhPbNUv1MdkZiHOnB995tJI29w8hB90LftmN\n7GttJDQk+UqxR7mXHRa36apmIWvy86B6g6CEpAaqJChxHpTmByapKLRt1MD8\nRku636UNDK3bERPtqyuldIcNrYMfN72u/YgX1RYaebu1ePwFpepzpBnP6xFQ\nNU9wRqs5DuIYK8PoBX/937IorrgUg/o02bzfwWUqTX/UKE32HUh05TZPRShd\nOvF9RepC35b3mOOxvi/k4nQCCeuiR/r3i3DfNU3tVfhuMTlAPZ3d1KxrqNlR\nNlm6Oh7M5mZnmvKmSfhR1Y1PmA0zaMcwu7Y9My7yGi1ACHHpSBawkGmLTz7R\nt2a2\r\n=uHwM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.15.0","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.6.1_1550863650904_0.40388051464019625","host":"s3://npm-registry-packages"}},"7.6.2":{"name":"@nrwl/nx","version":"7.6.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.6.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"36e419b778d5212bb20fe79468c823f2841b374d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.6.2.tgz","fileCount":44,"integrity":"sha512-bZE45JwEJ/qSUNnARZ9Mng3gkWC7wamGfm/Kmu1JefLwS9voDeaXzOYyEmMyc9GqAc8+s23dRNrdyhYlgR5Dmg==","signatures":[{"sig":"MEUCIQDzBLB46Y1E8Al1GYifbKefQFqOlhJQE5KAmmoLg5TkbAIgQ7Pr0jaMCMPiOYn2JvIjvkWVR+B6Yf845Sex0X2KKsg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccHIGCRA9TVsSAnZWagAASN4P/j3+MXxORZlEkwVrqIMN\ncTF38Sm/XfHwOlxucFheUs8ThLnjTaf/wt+fsYSpIQKTqLV4P9MW9SRbDeHu\nvYJo2yq5tI4MMBJjh7tPmoedhrD0unuddaWQeN6ttqkmdxlopGhuaFXTPir9\nrT2dowUuGTT6a7lay6ysFSGI2HTF0czQJfbC3vaVLAbYZRBhJ2BrfC8mq+p4\n77k0QxwGWkjNtcbCHB0EpImjp3MaVKop6Dn/uOhFi/0hXfe7P2Tfr6WT4oNI\nj1YItmVlFVmeUY4BUDIaIqAoWKuum04OqqqZFAkMmHmkk7n3U5dW7vLD7hHQ\nb7HNfb6xFF+mgR7BqdvV8bSLjB1MA3ysbdIyw0++WvqrHPvidDuJ1DDE3DSO\nI6oiIwMhpT9m0yjzBez7vHk/RsJbnqyNtselVY83daeS4rHyBu7hoIUx2sHZ\n9vpngd5rlPXqBAo2Ekl76yIQRFHsEgsx7wWjdi5dIkuVEoTEOAsKDdA9fPaQ\n0ZeUKj96xbrFn2FpJes+xbJkJFG8ci628aYSx4Rdocv9D2QDAnhDIytu7NPT\nA8E4CRbUIb3GKFTh5STMTvjZEqgu1gHSEvXF/Rd0PcC7dxnnC7OEm2BR+pL9\nFVX85sEZZL59/iBtBK9fV06gF0w7xny7ZGolAcIs8gd3iLzR9+CMCRNnhA1+\nUdYx\r\n=Zdq+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.6.2_1550873093869_0.5896325480178548","host":"s3://npm-registry-packages"}},"7.7.0-beta.1":{"name":"@nrwl/nx","version":"7.7.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"4e205ae7ecff3bb067421ae357713aaa08da7788","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.0-beta.1.tgz","fileCount":44,"integrity":"sha512-SDcui5U/61IEQ1RGDYEy3J4iPTkQL0rqU4pTjKItP3NmAPaePHKHqsEVo++OzsY+C81RjbKfITU4tp5K5LCygw==","signatures":[{"sig":"MEUCICh88i5OK3/iUdlLZ8HWi6WwLoQENHNFmP7AkI2RhmHuAiEAtCNp+dXaTNLnrmUhSL9sN4sKyF4ogHb/Ii425KnUqxs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdBQfCRA9TVsSAnZWagAAFKEP/3HgdR+8swZi602G8n10\n7VYyeye4+48ixNJNsIaClQT9fsxTbZEifbnNESuxiY3SlRO/em3Ai77ErZz6\nXWlxMCoWKRbuuCfpemZtLDEOSVgOUgj2PUIKzVKmnPZWf4dBkq2Yd369uPag\n9lJzm1SCnkNOYdi6JoUWeyUPJ4KmdphJYn6YZZBzT4QL2mtVfCUVWGIpwfOf\nKjaGeeZGyC6T5aN8XzH4uHoJ6z3qGxQBrHnJZgrEoAbcBrdoQP3uQaaju2kv\nAWhAGGmcCTvfcanJ1t0lJChEA0dH5O/VU93aq++YDD39ktiTbOfPf/lEY2tC\ncyWnQXxzVe9UXLqnom8aLDNTEE1IFu2ec1Ctp06G0sywA3PgBLI+KjJ0b+7e\n6/nUhcXryNB9xJQYzaSf9iUdUtFq7kcLP8+z9DbSHkFsSobxlfhxtDvi0qsq\nZOJbbB6vBNzmFfNUevQOXWZQjNsyV8ug8c6jjGo6aTO4yj6gxx2r4yLW3hSB\nMXjs2ef07E+wHOkyWyV/8xLygKG8Q1/eOCBXRRaSHnzFLG4HeN0W4W3iYOtM\nyWLHERkgZQM/qqbe1w/H10zO1PZFsuNRi01mc3IwjFYK39G2slthsL/SHG1T\nd8SrwYlWt36sc8EbtNYfpP3Yqomk46HyWKo4TRTbHpDqXZDy0H/Ivz7AfzBS\naBMw\r\n=9VPa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace Using Npx\n\nUsing [Npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) you can create a new Nx workspace without installing any packages.\n\nSimply run:\n\n```bash\nnpx -p @nrwl/schematics create-nx-workspace myworkspace\n```\n\n## Creating an Nx Workspace Without Npx\n\nInstall `@nrwl/schematics`.\n\n```bash\nnpm install -g @nrwl/schematics\n```\n\nThen run:\n\n```bash\nng new myworkspace --collection=@nrw/schematics\n```\n\nThe `ng new` command uses globally-installed packages. Anything installed globally can be in a messy state. If you have any problems running the command above, you can also run:\n\n```bash\ncreate-nx-workspace myworkspacename\n```\n\nThis command still runs `ng new` under the hood, but it does it in a sandboxed environment, and, as a result, never fails.\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.0-beta.1_1551111198855_0.3907939487800858","host":"s3://npm-registry-packages"}},"7.7.0-beta.2":{"name":"@nrwl/nx","version":"7.7.0-beta.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.0-beta.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"0bd0045e26641bc6b0e7910b38b09d916c0eaa4a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.0-beta.2.tgz","fileCount":44,"integrity":"sha512-knt5xgIeMlu+POhb/EVhGs9Z8Od4qY7eqp8cEkUwWIlfipcSo5aWx4/uE+gzLcMLvLasoqc+9xzn5/p6dxa9+A==","signatures":[{"sig":"MEQCICuqJ36WFiYtcoULTXguL0h3fe3im04YHzGm+gO5pXGZAiAPlo3y+hpEcwzg7UDpNqjWROVoxrdRYqaUedLZRUWBZg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdBaLCRA9TVsSAnZWagAASCAP/jPGrHIqv31xTD2mlfRX\nORSInNyiOrOeBRwsxEUKfRvHlg2fKOdUsUCiUIqnFgG6pL1iiIeFYaB/tDBF\ngR/7uZRQmAlxxuEwT7x8GQnuxQ3mr7egO24FqMV3uYdADA6pd8m3zuaPfY29\nN4/1GbC4FmZcT/7wE0s452mAgDjYZEAgBmTe8ozpuUsPxiUbEl2fSpAyap35\npUAi9QAhlPzbhlmMyhsdKb9NxAixtv7ZE8p5OFRx4cLuFm9fmYMTcUNQSuYk\nCoSce3ZzKiyWMICVmo07D9ghIDDobH8Hc0vf92LQvCwpptXueTGOGWh3vK/P\nERPMdUo2Bl7XuuB+O9S6hDQPFeCc7x91tWiuLS/3WLyT23dTNN4qGoQM5r5E\nOPYL8xtWNlU4Q/GgXpd6E5TJ1IG7LXvJv8C+PAaP8jMZdeCBiMPg+hqbVsYD\n0EZPAVndGL7WdwAyd/RVlq4IhpybqhvJypju2pSlL4bouJCAPslQokVLTqnW\nDHkTZWoBGzKkOp73JxNAr/V0W3l2oKxcovFiCVRv16I7x/F+nPCLhgW9PalJ\n1XxLLExitirbE5g6+xhMpWm9rdp+dnacPEialXl1zj7BI7yvO2kqsF6qyyI5\n/ZAnthJeUL+vRPcS95J7HvvAWoyGpc9qjAuaVqyw1ZRsbiytS/+qFkI6ECfV\n41Om\r\n=ReSg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace Using Npx\n\nUsing [Npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) you can create a new Nx workspace without installing any packages.\n\nSimply run:\n\n```bash\nnpx -p @nrwl/schematics create-nx-workspace myworkspace\n```\n\n## Creating an Nx Workspace Without Npx\n\nInstall `@nrwl/schematics`.\n\n```bash\nnpm install -g @nrwl/schematics\n```\n\nThen run:\n\n```bash\nng new myworkspace --collection=@nrw/schematics\n```\n\nThe `ng new` command uses globally-installed packages. Anything installed globally can be in a messy state. If you have any problems running the command above, you can also run:\n\n```bash\ncreate-nx-workspace myworkspacename\n```\n\nThis command still runs `ng new` under the hood, but it does it in a sandboxed environment, and, as a result, never fails.\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.0-beta.2_1551111819002_0.5331617809470695","host":"s3://npm-registry-packages"}},"7.7.0-beta.3":{"name":"@nrwl/nx","version":"7.7.0-beta.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.0-beta.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"8ac21035e45c413870ade01a57f9cf71386f533c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.0-beta.3.tgz","fileCount":44,"integrity":"sha512-eOcCETv+Vt6TxMZqpmaMkJc1OBJM3jqq8JuMlAhrTZ5ClWqft3zDYH2/beM9dHVwPX8SrygERer7cSsvqsqwIw==","signatures":[{"sig":"MEYCIQC9vcOzmowhzXVvAdzW5AoL7ePSS1YC+7Xj7pAqH9VhLAIhAJxKVRw5JN4/WAtOC/d9q5Kd4R31lRd2ftE1WxGKcqrP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdBkiCRA9TVsSAnZWagAABKcP/jXyK/0/8qqjnoZxXC3i\nZNaQqi4DA4llUEGwH0N5/mrZutTI7LQwinduX0FwZZ1HI3jYZ28Pu7ACjNFt\nJbTj9jlXUNbO/SNFd94qnMfDp+hThsshaakytNP75+PWgHX0bPMMH1L1fgGf\nG8t37YVEJgvB9vts/tfKImn2R554WHQPgbgzmHGpONOyJibjCmnnG4dSV/ON\nXLOe/XRk1uK9gNJ7jErXL+FKzH6tGLzvdkfCjO7GsJWAKa6AlfWS0dnTKz4c\nutVDh1/O6BznkCTfQ0dPFGVoMTerfSs/kBAvb88PxDWnilVQEKl9cAxofUg0\nXRWrdxI4+46CmX6ZK0nuprEykK8plXi16fsEGKIMlRWqII+iERhIY4Z8Siwf\n3ouCZQBcICpS/XNaJo3fbeLQeNxjWZpXaGWkKmUo6AdNf1VJJ/8wKBuseD6w\ncm/ivZ/IKwu4fBJa4B2yYdpzWg4wzFYdk3UhcPXyRiZw0buMRczd76zQ7K87\n/gRB81Jj04QYL/TW0VTJ1y+gzed5AJI2MZxlQ4BwAK8irUz0rDLEW/KcEKRo\nWcy2mLeCvX4nmmfJGFurFe7hqDfbCs4p6GJZQRT4Ma8uBrrHlymUy8VA2twR\nKcmZ2Wk5PXClkJj9Orj9YfoAstMVCshbvtxWKtJkY9IF2NgZ/9Np1zVsNnjB\nE8PW\r\n=SJPg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace Using Npx\n\nUsing [Npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) you can create a new Nx workspace without installing any packages.\n\nSimply run:\n\n```bash\nnpx -p @nrwl/schematics create-nx-workspace myworkspace\n```\n\n## Creating an Nx Workspace Without Npx\n\nInstall `@nrwl/schematics`.\n\n```bash\nnpm install -g @nrwl/schematics\n```\n\nThen run:\n\n```bash\nng new myworkspace --collection=@nrw/schematics\n```\n\nThe `ng new` command uses globally-installed packages. Anything installed globally can be in a messy state. If you have any problems running the command above, you can also run:\n\n```bash\ncreate-nx-workspace myworkspacename\n```\n\nThis command still runs `ng new` under the hood, but it does it in a sandboxed environment, and, as a result, never fails.\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.0-beta.3_1551112481544_0.42118131529052905","host":"s3://npm-registry-packages"}},"7.7.0-beta.4":{"name":"@nrwl/nx","version":"7.7.0-beta.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.0-beta.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"03e455a36aa6a1bbe62dd63ce9f7da4de3805fe1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.0-beta.4.tgz","fileCount":44,"integrity":"sha512-o7xFPlPieP7lBqj8xIHBWlLjbyPOJhssQ9la97D8TPkTppSfCISqZ/e1R9WwVNfAWCTGSSdnVx6dB7+0Z/Xh7Q==","signatures":[{"sig":"MEUCIQCI83wnNRDZsf8uy/3bvoMIB/xKPnKs99r8EHxgjFbBRAIgfi/GWU82qUri7yJEDTETYSUPe+tg62fs20FtGZBUMr4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdDZMCRA9TVsSAnZWagAAQkUP/2qz0j815P0AZDHVXysU\nEVdRKqiL1mMCHw1NfHqcoF0XlKOLy0KU6ivpZmONGcsrn33kYDcyZW/gVlxk\nkSpfydwjaSMSLusrvfoi7XPX7sSIjbKRvdqFmTmbG9rFFZkzm84hLdkqufST\nTJFXy6NhRKhkYbgOQ2pEqFBnLz4yvdxOVOP2ET0TQWcyiQ/7wl9QJ4MgxY/w\nEKYsq/aXipM1uIpAM2RSTgMZK1AgH1uERGd3repeVwm0J666qpkPOWymCop1\nyyE7T4EJBckp3HTfUi1auEgXeP2kS95yEcqFGhg9aAie47K1nuz9mtRut4CS\nIz9Gm8eY6si3KNnDKz8wXDyNpI6sHz9vBFhs586TAGtDp4JvxsC9G86jO4US\nZP40Ak1ADCu1RIeR9gttp+y4+/DQLty3IirSRQIENO03U2DtuYRnwx07ik2V\noBIux04sv3OZVkOlasQhs+DoD/hdlUkNX1MfggLdMxEC/QB5Bzc+HrqAXg+E\nkxBWEC4B6jNbdJd9BPbQzU8+iiXa8NHeKjsweoke68hZ1IZ800zJZb6NVlL3\n2oCTtbgBpKqhUeXnFvL7j0B/eiK5uHHuUnlxCtqTTGtjWIHJDJazlvQVO6bP\nJ9KELkVEvsG214Dr0LIIjP4RsqchePtU9D+9rB95OeLv/P3iHGAbzcQ7BlLD\n5vF4\r\n=Q5LF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace Using Npx\n\nUsing [Npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) you can create a new Nx workspace without installing any packages.\n\nSimply run:\n\n```bash\nnpx -p @nrwl/schematics create-nx-workspace myworkspace\n```\n\n## Creating an Nx Workspace Without Npx\n\nInstall `@nrwl/schematics`.\n\n```bash\nnpm install -g @nrwl/schematics\n```\n\nThen run:\n\n```bash\nng new myworkspace --collection=@nrw/schematics\n```\n\nThe `ng new` command uses globally-installed packages. Anything installed globally can be in a messy state. If you have any problems running the command above, you can also run:\n\n```bash\ncreate-nx-workspace myworkspacename\n```\n\nThis command still runs `ng new` under the hood, but it does it in a sandboxed environment, and, as a result, never fails.\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.0-beta.4_1551119947368_0.5898066194035108","host":"s3://npm-registry-packages"}},"7.7.0-beta.5":{"name":"@nrwl/nx","version":"7.7.0-beta.5","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.0-beta.5","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"06930728a20518be76e7ecf732091f43bac2b921","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.0-beta.5.tgz","fileCount":44,"integrity":"sha512-ABSoeTnor2S8G6s9HwWoI2ILbTVKq5k24QcIQ2bIpeN5efMlQZTyqreQ6z6keRV21H1CJ1yT6OZZEwAN3ZW+7A==","signatures":[{"sig":"MEQCIEj15zc/Yx8OEes/In/4b1oCd/skoVeU8HgWnPzBua8mAiBjtliamFe6flDTWwHohAWLhfXDBXAkipJXcjArM2Zalw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdDiUCRA9TVsSAnZWagAAvAsP/2SPVEbGZPpvwyTjRrf0\nrgEXyCz4Pwmn/yip/TgXTwXK0GBb3nDkkHSP4fo99+b52FFXOOo/UhKbAb5l\n+3FSWnD38PtmTbbprZpiS5kjZA6U6j740NR0GLx8+3Y1YTaObiM+GvFsnJuR\nnsVBQ55tBsJHia02ld4o8zQdaNFN15go1fUdODk5KxKoX5J4vwOnceS1D5Wa\nz6pBDSKQaIM64Y1bOxJ3usSqGY+CEFcZSIdXLT3Ne+o33Pi2dXQ8iMEj7YXU\nIcz+ygOND9fLbqTclhX4VUHw5di60R8KoPTS8mWymZCKhIyxMSFI+XNL7hmb\nwB8ye1UwSvFE/Y7I3tzn0q0x3/YOSTKCTjUkTjteEbDlMK5adqQGCVIa1RDM\nlsEpomwOCLSIHfRuoumOKpBox1TOMIERMp6MIBFSdDdHJ2WnwxyKFNOWrV2N\n5r4O1PaUKTIDyJggG33zCz/Kd0yTZGLVVObLCHYOrIqx7YW4BqhakNwnxt/Q\nw6MdKj3El1RpnP6jWBFWlZUnvLU0CiPGz8BMXh4RvTIihoJ3Xq7jI3gV7EKf\njj2EuWFyB6Q1RLBA0dmGqG13abcxaH3nbT69eNnTLZjwguI2bByWyxLdXbtk\nylJAuQDCmJMtQLemCxddLdCJSpn48vhOuVBlbmAv+RYGNyvIbN1Iajf60RWV\nviGu\r\n=pGrJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace Using Npx\n\nUsing [Npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) you can create a new Nx workspace without installing any packages.\n\nSimply run:\n\n```bash\nnpx -p @nrwl/schematics create-nx-workspace myworkspace\n```\n\n## Creating an Nx Workspace Without Npx\n\nInstall `@nrwl/schematics`.\n\n```bash\nnpm install -g @nrwl/schematics\n```\n\nThen run:\n\n```bash\nng new myworkspace --collection=@nrw/schematics\n```\n\nThe `ng new` command uses globally-installed packages. Anything installed globally can be in a messy state. If you have any problems running the command above, you can also run:\n\n```bash\ncreate-nx-workspace myworkspacename\n```\n\nThis command still runs `ng new` under the hood, but it does it in a sandboxed environment, and, as a result, never fails.\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Nrwl Extensions for Angular","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.0-beta.5_1551120531749_0.2820407995770584","host":"s3://npm-registry-packages"}},"7.7.0-beta.9":{"name":"@nrwl/nx","version":"7.7.0-beta.9","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.0-beta.9","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"d826e12c66e8cb2f1e0e7c31c98ad731d73d3f76","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.0-beta.9.tgz","fileCount":44,"integrity":"sha512-aIb51aQV1o8tL/HLtUvsMS7K9mQXlh/A0+Vj98ybMWUU5GW2MkXPiIepJnNk/AKOH2e5Db28+WpbqnBnFJv1HQ==","signatures":[{"sig":"MEYCIQCxQmH/205tcMw6kbMv6FIXX4TYcp5Lnxqj/G6y3NCeCwIhAIhIJO9mDwK2a5lUTC0sV8PgKVhzVgjeeHOxHaSdYDq+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411435,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJce+SXCRA9TVsSAnZWagAA1J4P/2qE3dAQ7Fl915do7LcS\natF8iB8hgmFY8RjuvXxzBxXK1aWhp6Hi3pB93ywcMm2y4MuceuJ5S6VjqwIm\nhkVk4U6+ezqUT7ob6wfkRMwU5VqEeA9FoQUb6q93YX0+COx5iPk8dri8gk10\n6Ec3zphIrJkKnZyUO1kEWOgkLGUfZgWqcFtWssRAvpOlkfbQLs6uVU13GcHu\nDZhYq+xsywIkX5T36LJ9CugaDOmd7SqLE81sHqZEjwzfa1jxbQjr8nYkjy4e\nbx/kmWynXM1kzGUydbzLhOGETC9ZCvuK/aISnrflIQHAOkB0isllmYn0KQ6X\neHqAkY9wjzoCo2gUkSkgEJP5kmZRN9shSv9arEvjVuVX7pJzQ6rvIUBL0aG/\no80HxruGJlmMqIKMj1SkIJoXKz8AEt/YDnnCQgERQjc5qmoa00pxSGeqaCy8\nweTptcnRjdnGnvfIotyR19+XQ7UHg40uTT4b0l0qUlKNs3pg7ZloQ77qgmB/\nMwoKtcf+DD/H/6drRRzh8H8PTaJg3FHWpKYrYV1WgO4oHQyUuth7+ZiKGxbW\n1/PYp1csBUD9HZZmq16iZ48jkQwRivyw1d6szIpOXZk1itPzEUlUW21gJCYN\nC+ZXXU8FslVubuqN58ycjZTCAXW33LEdmFFOFgobwC1416UQqjWi0aUFFO3/\noj5S\r\n=hz/L\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.0-beta.9_1551623318797_0.3888737876152535","host":"s3://npm-registry-packages"}},"7.7.0-beta.10":{"name":"@nrwl/nx","version":"7.7.0-beta.10","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.0-beta.10","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"39d4e6132aee6d4fe9e6f9aea7631da875a778a9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.0-beta.10.tgz","fileCount":44,"integrity":"sha512-WiBEnVku/iEhJjnzG9HtOLGSNLrbsKdgeAyaGMLZv9lTrA/qpY/t2Ke7xmQ+1N7PmW2ZEAeOn8aBL8cwLkCfOw==","signatures":[{"sig":"MEQCIGb2gEC7e4dkR0+DClrWI1KzjgREl1jenUEV/MWpf5JHAiARQoqm37tUgK1nY+W4M1LJdvJow5dJYYlFfPkGdMI+6A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411436,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJce/LyCRA9TVsSAnZWagAAU2EQAIW/Jtm1izKexHiL6/Uk\n5EVo4WiZvs+VViQ9fo/9W+ZYE7xl7ZpBQ00ulo9wCDodWeV/nc7Im6q7KZnf\nsETkCGpdA/sByzxOODwdXKUhPlkxdaaZIhaxmkqOv1JqjcO3FEYe0s+9sIn/\nYNbHCmBHLirvQOI9gLTYaAGkZ3+m/abw5lDqP9SzH8HCRKHLkj2qo8nXxGBk\nPooAtcA38pHQAG0mGCQ9WZiGdVXT635oWD/DwmxzbqTM/wg87P1kus0Iaz1i\nAE/Ax1fh8OFuhwSYIykKNXHdkpGhFY851ydkOP5TRYXU+eNbiuGmKDJzn+I+\nAZn6kvE0w++rANTdozTRAAfjPxp71tseFQC0ZCc9MG1FNWsNglT+m8hDckCW\nWQzl8mLeDuVRX1VPjalW7VeabWiDF0gJwSG8nry0RH6kv9352RfZqybxjrcA\nOxX7q2JX/WL9GUOsVV8MTgp+l9MNWDJ0UriAeySHTC1ukKvdjYhXtLq3Oc1u\n1d4NS68iZwnyd2MswtPWIIOuGxGleveeu6XDyae54HLV/zsi7qPUT+qCvRea\n5W29xIURDW+FzxMNJINzHebNkQgnpl4neo8nfi+B9jfou1w39vmQ6DmWNScT\n+pQqYcIP81vUzBbjO8LgbdRWHR97QPbaKWUy7BQQbSxTT0uTKb7n2p9bBamA\nRvBJ\r\n=8gDQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0glYvV0\" target=\"_blank\">  \n    <img \n         width=\"728\" \n         height=\"auto\" \n         src=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg?w=728\" \n         srcset=\"https://images.ctfassets.net/8eyogtwep6d2/57vhB8tLvCaEk1DT920ZQR/aa4ad56598293930ac0314c97329c07b/connect-cypress.jpg 2x\" \n         alt=\"Our Newest Nrwl Connect event\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.0-beta.10_1551626994073_0.5210757377616115","host":"s3://npm-registry-packages"}},"7.7.0-beta.11":{"name":"@nrwl/nx","version":"7.7.0-beta.11","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.0-beta.11","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"5c1e9cd16bc39e2f586c44d2ee11c39ec9467589","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.0-beta.11.tgz","fileCount":44,"integrity":"sha512-038I3YtLPKhhksgL6TfjVBiOjC6UFcQ5Ga0yHcEQCFJAtcHbqDKWd2vJfDXRunC9FiAHowidrran2Y4KoLCJEw==","signatures":[{"sig":"MEQCICTUDnq1o1D2KSKT7pEUWbLjh/9Wucc/j30EHZMO3grbAiAZZOu7gOKkOYzFcU/DwTmB5V3VQCh33Lm2XpREAAYDeA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":410972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJchpxZCRA9TVsSAnZWagAAUUoP/1apGABGF9LUxoJ1ZxGF\nYBpWUsejE75hmEIRJiYuUgnDB71+Jx8vZT0rzTc7mpOPo050ennn5xS5qVXg\nvzLIPZLUu5Sr+KCD9bUROikAjcF4NnToGUAohYAav+S14i5YYc4+TQ0QoWWi\ncyrf7rRTogoqKAOEGwkkhT+uH8ep+anP259XdMjA8L6tLTNnra1NRVVO6P5H\n4BGUc54yG2IpuAVLsUuveFPIBs3lQWe9XIC5x4xMqbf/D5d+9GLIcz3LiKAt\n3KxbnP0+p4U0GAFFZxy+gBsBfPVuN6d7w+im2oOTCbjvIZVW+Q32uEZlS7bN\nAtMRO0o+rMhjCvCCsL/QRuwMQPHavZI+Pk63lfnsvLX1Z2KCX97ijK+6yotc\nHOR9OnMymXU9oKDizvPaw98I7df8bPtGE+nZl0inBK0NiXPAaf2fW9HPV8YR\nmQzV0/h8f1BLmHIsKB37GxKe1j02W+0ZvVqpX+Z4jcemlHCwl5oO93MKZsIo\ngcnJTvhOe2TfUrewVe5jl1RqjgG6QhgztmpjlqhfMMBikk5nsJEnG+MWX4PE\niU4bkAyn1l5ErADRdP9m3DNe6kbX9xA7GL+90GOmXmO0G6tS3JnwNOyWClpq\n/RKVydyFY2c9nPH3zPHZFziFem0BtpkyhLvd9SC5aH2KUqNvXGHl51UX30sp\nTyoG\r\n=WM+7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" width=\"450\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.15.0","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.0-beta.11_1552325721020_0.8986332777483812","host":"s3://npm-registry-packages"}},"7.7.0-beta.12":{"name":"@nrwl/nx","version":"7.7.0-beta.12","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.0-beta.12","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"0e56af48288101059d4017a5233045c3086f061f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.0-beta.12.tgz","fileCount":44,"integrity":"sha512-0W5cYJtAbXtihFG+ibGjV2jzpWnaDl5pQMwjLWmcCMfJ+cT/uTqyjtkXRIsG0VELnPLJgEsipvYNu+aQ/oD9Fg==","signatures":[{"sig":"MEUCIEqqEbA2/OcHaBJ8W/RFw8JM3XRZwLCVeeBpC8Hy1Ny1AiEAwqSQD63r2fEsqEZY9fT4jDjpnf8BfQhiF9xuWsAPUJM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":410972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJch73nCRA9TVsSAnZWagAA8bIQAJYKxgPG3Ej59QZxVE6A\nw5Dgzxkr1xsrKzzSbsVAD2Jc5zZ7wgwJ4/heUAxXhPjIeBuLBIa1wGbOVqU2\nH1BXLEBRZmK/eH4mvKaTrDDwQKSnO5OVOyjliuMwACy02w0GX7t95JUgob13\nitZbbP4BYbyooDnUhZy3bY26LM8YklV6sTGWXENNzi3cdYOSDgyCW9nM9X7T\ngroHy/ad/S6/Bkw5G5+Cl/E2EvDidL+liqetcG6nRnEU6POm+LR0AWn9fQ+L\nZbKiC4xWzGtlAQh7w6kw9hZXCpnC8eLWB75wgTBvK93n++J3zIwoqQA0WWgD\nz0rsc7NROIqiD20D0S1y0DRLni2pKP53KDRCEp5TavqRFa8nACxwwsxdAGTu\nj6uaydY7nMwosJXdAxz96EgrEO/0qosMxRHz4u3wdXJcj3oMEpapEf72hiLI\nPofj3ZcHh9VDSxhQXfBCztp6TWvmVH2nUUdQkDNxtmAaaTaDJABh84E6dLtI\nv1TednBO5N8WO2OlhLQAo8/hwqA9B4u5MbppjdUhuyD6SRrHXux9N39K4VKn\nkYxECZMtKqflA8jVAL1asot4N/EZbQm0T9OM/zuuY7BWfFm4rFdLVmaZAez5\naceB1RamnfWPa4/Mrjbf7iFo/CChsIwGiY6TuMIB0mrhQeXYSWl/kT8HHETb\na6Zt\r\n=vlyY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" width=\"450\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.0-beta.12_1552399846918_0.4446472286751193","host":"s3://npm-registry-packages"}},"7.7.0-beta.13":{"name":"@nrwl/nx","version":"7.7.0-beta.13","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.0-beta.13","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"1ec52cbf20176697b36bb1dd46d9dbb1d3b843aa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.0-beta.13.tgz","fileCount":44,"integrity":"sha512-43dUCf7tEQt6nFnPAThJVkedBKFMW9smZSSE4QuBZR7lRpzxRMRjbyMKO1OzOwG1KyqVl1VOiyf5pvbSkj5Qhw==","signatures":[{"sig":"MEYCIQCRdTlcm8aPyIsu3gqGUp5yzqhXOoNy59PHuYYGF+1ngwIhAKdYwv7nvo5bnAWQzuUll1B4Wdb+gSzkWaja+UvUNfM1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":410972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJch9BrCRA9TVsSAnZWagAA2ZUP/is+EqVvvlc/qWdl1H9o\ne7x/howszP8u7/uy0e221U3WhHtaYDnAk7vt/h3h0dCb80DPgAOQL63DOCkz\n6cTuWh6yKn67Im1IcanpFX8U9adCAr19MvzgIrVzkcpFYTKc4FL926nKzD5W\n7FxT/mmrL9Zg9Ex1IdzyNsaioajX0TAbdCxZC7k/lC9/KOc9z7uVQos7bdr+\nKvi9dj/4Vu/cbWaNEZ4apynaPbZv5GnSCq9P6uNiL3Rr+yNr5tXBoKX0GDsd\nld2eI0Ue+LTjsBvrCmo4iVXeM1LcfNeI8HC8ITgjcKWbpw6krobNF1lebCwl\noPYqzVrWoMttSAnyjJ+xhE4HkXu67aH0oHPOyL6BOFT2vFVGJ77+FqSTmI1H\nQYWS9zBdvRcBEQSU7zKdJBQUKv/IgaAwllW2FZw00rSVBGRZzZFnCOQeOuk+\nRyCzNQJNhu1qZZuNzmHhTT0jJQxifHKJ2wxO+jZ071zlfyvSP9PoKimOlwCp\nhB1IpTkCWpPLCvaIj+jFQIEjCXPBV9vVD0s7Vx7/i/RFeqnxInFvQD2ybvTM\nm+mkTnrKCBHiZUHQzX67nYmD4sptgL2I2cLdmNAI9qUbHCh0cLMuB8VbDDSC\nEMDP5/yRXW3dqZhdwV0a/TquM3xC8Y26EJk1vAMkKnM2Q2NL6GHuceBegs0h\nah9n\r\n=YI4q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" width=\"450\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.0-beta.13_1552404586059_0.6953825524370969","host":"s3://npm-registry-packages"}},"7.7.0":{"name":"@nrwl/nx","version":"7.7.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"5c3766bc7988a6424645508cbc1fb2288bf096c8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.0.tgz","fileCount":44,"integrity":"sha512-sbTENxzXsD5FSyMoGNoGkLLdBTZL+QGv/46qkxggGxbSYBlG4E8A8p29Wif/mnI/50IigWP3irS33U01+UvNsQ==","signatures":[{"sig":"MEQCIDiqMKbcRHwKwnJN2kdyEvJ2P0xHgOoJcB0roc9UlKxbAiA/RsLi1WdWX4DblAtJCQy7NEiM9pe1abg/JhNC64r2qw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":410964,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciP5uCRA9TVsSAnZWagAAhsIP/RmVEB/pbTJJL0FegJIP\noMdNUKSo28Bc1fu32sAqHtAoAOR0HnKm3N55+kU5XxQKXQaiKpCKscyzDKQ7\naE8oC14dcPzP6DG+tdEfwUCBn3RWGxwTf/HJclnWU552W0BsaNGeOAv3yjgO\n7OxJSg8Egec7FsF1GNxn/QIaxJWBs/w5/s159SpZQNngP2DNJXKIND7/B5KR\n1ektMK1MOCxRhqQMPCgeZR4gmAyk6KwtFpf8wD/AXcAbqXAG43YA/EeFMSOA\nCCrmKc9OIslAqpbEhIC5hXhbqT76Xwwh0Cbw9m9MY/9eAoQiG75T8ruh/0Zr\nIBxmC03nA5J9nDjbiKdfXC7XtX5Gm7MzZtKjBAq1noniYiipl5k8pslTtOZf\nrBRsBC6Px8wXHSOlmY+/VhQzp9FkCHWBUaqVaYCljiFnb46zkfqXAM6iBF1A\nnWQhdwnoS5ORGQaDIVKbgN2HCuOcMWzoCp6ZBqTFARSqquED10DjTiof6aBL\naeclc4dOUzDazwijnpw3yqZH+MIzN2COISdeAIPdIEUuqm6WB+dFM2U8/452\nX/pX9MvLoRviNswhOPX15UNxnK4eQqbBBEHCfxwYiAZYe/glvbCBZmlEOVdq\nyjEazUYxkJQAahRRWMMVMaSfriPKCJiTIpWyEOaVZ7Mc7ZjShqlKJEO82LTq\nW4Mk\r\n=O7ch\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.0_1552481901944_0.19932617254690976","host":"s3://npm-registry-packages"}},"7.7.1":{"name":"@nrwl/nx","version":"7.7.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"8d69cc58db75efd70f45ccf8312c01a2fc81df3e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.1.tgz","fileCount":44,"integrity":"sha512-akzk6v04rIBgZQkRWbrDfAi8xbn9qmY6AfO1RhroTzJl1BQclEkc88natk3XyW3QBzgtK8qyVlhOAqb9qbQdKw==","signatures":[{"sig":"MEQCIHObY7Kt5PB5uoQQ9ymHok+08zKh9dHYxsNLE56u18UOAiAVKwHicFUFkfnmNI0gRXhA8d5IwhSSJBgfsFzedHYhlw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411290,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcilVuCRA9TVsSAnZWagAA1jMP/RJJMfIcEFrYg2wybAH0\nmMoUEbiFltA1wYDOUFrShV2tuvnoaOqNgLy9fhERtHH+jp80Tp8YBMhyLlJL\ngvnJBINmXDXmgfBV9OCeQknTTYjx4WnQ4dBFfVYkKAG7n4/XQJD3GA/oSM7U\nrr1mrvOJKd/rrs0n3fZYo5hWrbVEm9Jx30PExTJ0PYLMJP6KITUPto3nlygL\nr3hjvjYKjkb/5q/GTymKn7RLomnWYtYzU/NTsJ7ewdcDBb56g6GD+ssfz4lR\nFt0FMDY2u78ioPIhKxNWT5n8lVKhBn0RbXxGCJslxumoQ9do2WbcDH1kzj47\nYSEZXZPbnX4Z9vcsXF8e6/Qzy2AVwaK5Yi7yHWQWO5BVR/C5M7BpocI/GmSJ\n8ASLwgvPerjYLgOiUtNuXiMP3iQC5V7XhMYbjuVZhDcdEJqIEGQDF29bQsrX\ncInsRR5G4LRQ/4dd6XIrQsEh3Z1l22RRQBjlvtp0a9IW1GsQCWBPlGOk7FoN\ndPCj+sgd1JNF5OFAxUot5x4oExl8Pgc7j0yTGgAeYgfiIXu4VDtuHyMtJSeS\nza+QWgsBKmp+sXXVmtnXkj0gkmu6TJCUj/DypkefFubM7OL/8/tdeIK848T2\nRHOVdwLxXpyv17MiAuRTj7eoxy7YWUkAueb9+NKf4f3Oz8Di3/4HrO12xInB\n7bXP\r\n=efNM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.1_1552569709545_0.5742970234025855","host":"s3://npm-registry-packages"}},"7.7.2":{"name":"@nrwl/nx","version":"7.7.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.7.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"5f35948c544b39000005ebeb1604ecfb6c641883","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.7.2.tgz","fileCount":44,"integrity":"sha512-UOBHQi/Bj1lt9IHEewiu8h0i62YqXZrzv+oFzyUxHfdm/Sq5XOI0v51i3KlSFrWGUVF5HBpzElfjck6006qRtQ==","signatures":[{"sig":"MEYCIQCc750xm6EpiESA/YiJIyz4aojNvS+FmymIjUTYlXjBbAIhALC3F0Vnt5BknZrqpsFnHwjL2Y/9pAZMZenTaWIWjAUh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411290,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcj6IcCRA9TVsSAnZWagAAWKYQAJxWVkLrDVJJTgMuXZcD\nx4HEC+HUR5BQGpqfYJULMsLzuq0K15gUGF6h3M0S13+9uLSDJ2gnCcrTcrnT\nzxqXigbwwf8mASgtLA3AcW/e0jzJIoUmy0WyaDHq6oaFr46tqD4nYWBHs2wv\nAcP2G4L1+LAOFx/eGL+2G9cJAYoeg5fLGo3rPaSKStvGN43RgS2Q3BBPN+Mm\nofpVVirxlt07lvT/ONvLQY6Cpf1+w3UtRotzO3KuI6rdON4k/KBTLv31Vcu3\nW4bCmxIergCCUiZq8Rky8v0fMRPeOnaJ1gv+YBZMBGFlZtbN6qHZdx0Wc3JO\nto+jcWw29R7aC9fRFa9uzZZIKpW8NnmEityqgKruzRJxdTppqC6Hh5wZ1+Rs\ncMdNKPTaaiJzkacmwz5hYyU5XTfKH9Bo7DrItg/J5kZASkme+T651/PKpRy6\nXZMTooS/6R/VBGNL0JuFVVrebrOOOwmfFhxpJL9SsQ2nnFqsm7IQdGAd7yNK\nQB6Nsegj7doe9Jdpgozia4QeCHb0EaiINXhy3K3oaEYR5ImrNmVdre8MKcqY\nVLeqCc+tesQe/1lW9TYdVFwcO6uUDSFaFAOUgVinkUIy1TPAweD921WuNXK8\nylUfYn7aNqSlCYjfmhqOgIu18hVfNEF09ahpGQQhNH3K56OdLFIqvBgpCkgX\n/Si6\r\n=UX5U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.7.2_1552917019891_0.1745700162607644","host":"s3://npm-registry-packages"}},"7.8.0-beta.1":{"name":"@nrwl/nx","version":"7.8.0-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.8.0-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"42c0548179e1ecb200440422c54690fa6ea7eec2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.8.0-beta.1.tgz","fileCount":44,"integrity":"sha512-v5Gc8E3MxhE6Z6NgcUUcQ7UDClp5QaVyIk7N2zfhS1UG2TbItuRJgrdzo71I4CIUYlGX4/C07JIpGD2ya+wMfQ==","signatures":[{"sig":"MEYCIQCdcFpVfdNXLZljFNlQdG7C/cca7lL6Y7+Zd/YGb696YAIhAJ+SIUzGGoO0NWuTe9cIxASDk+8N0yXrSnAkJR+Mwr6I","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411299,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpkZUCRA9TVsSAnZWagAAv6EP/iBA5WTEGgGhfWyRIW07\nqnI8mbNwR6p6/ZLwaYzVmCJBkTX0qSIGXdKg1UDKXbGDVCmVJ+n0Xg1IY7Vl\nYIp3ip9Y+SDowka6QpuH8gJTM6B6pSSOagDu9yptOsNNDifXh3wPfF9gSy+2\nySWKYhjcDj0Bs5O1HeUiqB7yscugpUHIpjhBdOFsBEIhIRSmFe7dtqW4YtIQ\nSdmWiBB5QujLRfcI2NbK6eMqDZQVGWjGlbyRigCl20ODH368RIHzMbvsx5xo\no62BUo1xuZXi5v/1xV4bdjOqfm0u539zTI8QQetqEHEJ0CNXOsi4Me8V8d8T\nrSdVG3EYYV1dZRzZQFYrcjDcfuQz1v/gb2TfJXM0rProVPJZ132Xc55tC3ml\nMaLLq1QbgyWXE8Qkq8+uZA6ajM63pAi5e+XcuWcKwKwcLvC0b7Awa+RpeOm4\nsV8sjdjutXzTq6LuVXVY6jJozNzR9NEhMl67EHbjDjHTbLPaSH/HbmTDHNb4\nJN0GKREsZRFEmFWq1TXMKnMv9TmSiVP5P1fefsUpoaiTfLG2CfKrsu9CQzaK\nfxQgMUPhRMgMLxfy03FLnaiNUA/BEay+xV1lIIsntPECFolvbAfofMQedwq6\no0sUV6eU0mX3M0X94E4L6fGdLJVDk2hwSikOk5qhO/jhcCp5XtLKl/iZdjog\nov3r\r\n=3FtY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" width=\"450\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0g97pW0\" target=\"_blank\">  \n    <img \n         width=\"728\"\n         src=\"https://images.ctfassets.net/8eyogtwep6d2/40ASb6l6MR7V0w5ntqZ2yi/b4d439fcf56e50085d1f76df1bee41af/monorepo-banner-angularconsole.png\"  \n         alt=\"Our Newest Enterprise Angular Book\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enterprise Monorepo Patterns](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.8.0-beta.1_1554400850762_0.14404448302584671","host":"s3://npm-registry-packages"}},"7.8.0":{"name":"@nrwl/nx","version":"7.8.0","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.8.0","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"a73177f425cb19c20ad909ad462e189342666ea3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.8.0.tgz","fileCount":44,"integrity":"sha512-jWZSd4eKapfeUrC7UBBjV0LM2QtZWkRFWBD+sPYNnp8yyINxdoqxah5bLsD3yUpHt6ycCqo1H1B/wAx7hMvvxA==","signatures":[{"sig":"MEYCIQDQq6xahx4abd5QWp4d8061SA2sdO8NaE005+eWqwghEAIhAOm/VfcmOKjg3MJf06VhuRpfSAIgFgWRjMJxjxfWCOUO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcp7RxCRA9TVsSAnZWagAA6KkP/AkBB1GAJz0XI0gKq5HK\nYxHXDTvNJOXk7X7a+R8bYZBrBLp5CPb3UKSGbTrtWjYStz4BxstDHY8b6+mh\ndoqgGWvkYk8Jq4W3ufAFvtxxuSJGdYPgcZoHLEWOrXfIXeiLc7dexaHOlwyG\nLSZbnStFErXSWUJyHw74fm18RjZP59JHXxQ+RyM6xid38WaUne2yIGE+Xn+D\n/cuReT0LkZbcmV3bHFa110isWujFm9WT1tURqw6KbrgxENvrBhNSTeJZXAMs\nmj+MSzVWKMdm0JvoQXBpCcWnctoqvV/0DpHFYY+kRO6Y+UiT4ATSxdqdj+i2\nTmM1Oas83vh75v2gANQZuzCj0KNHA4ry+Y26g99si7av+cWRuWTGaBcPsVS8\nA3us9ug09JuPerJLjmMa1kBeq5Yc+vtxCxAn6pqOhdkRjlg3FYuaHNcAc0Uh\nofCBRf7+ySbRIarym2Z7xD2CUmiGiY85RkLqi7jxQz+xc/1wsuPyd47QUdRV\nXQF2bDzaheEfTHVMN6NJVm//QnoCBOGjbh2faGq42PLZKOB7X3TnKEGxS4Q7\nEhP0JGzSJAI8qYVuInlf9Bjunmb+vSH7GvhfMXFKPAH+Bt83/NZ6lPmwhRuo\nFJakhjkfnBAHJGPBvalnMo/FSiCAEEymzpnHSxb0Twl00xASNbSvTvyCR6dK\n7wkd\r\n=65pm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.8.0_1554494576658_0.5072693710670919","host":"s3://npm-registry-packages"}},"7.8.1":{"name":"@nrwl/nx","version":"7.8.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.8.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"fc5691b5fabf1fb69d5bd74fb181dde1232ad7c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.8.1.tgz","fileCount":44,"integrity":"sha512-TebC4k7J2QxGMq6B6JidLANmFgtC7q+ZKGg76M7A7/xRl8IH1GTtKO1fUvHGghn41ud+bD6BwGf4YHcy7xED7g==","signatures":[{"sig":"MEYCIQC4L1QTv2SmCGO4W5OGMAIdYIvQcBPT9pp0am8UNkJkywIhANWVHl+v+vse4J4NqffCNi1bj+QUkYi2wEdg0bk/+AGG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctML5CRA9TVsSAnZWagAAzJQP/ResJFcOsl1nvGjksqqr\n0L5Ny+Stz90nASCM533SGY52XaQlpEUTyV1nzf4SJaKvurlsfk7ds6fzdbYK\nsW39Nsfl3N9/AwywmsnV3R2VsfrWgafjT83+hia65BAqPAEZFy+OZAte7tEu\nJBCXOdqyC8ywHmpfTSsGioFEvWYiaMoZ6bQaUKSQgJwg1LD6I+ytCE/J2JBP\neXWZSyAobyV9fVL/VqFGzhUAeA6bpFIoWZAMCSPl+2VUSx+DDCsPP7da7MtH\nyNRiE/SBAMKFJG9s4hciHKL46MWs9s9nSAjq5Hh5yTB1XpdYgA0v0+dWFvN6\n9W85FNc3ZOmhJFJMpJps0TbmdZ62ukNC+2o/1H6sG5qJFsO77EXTOYtMqnK1\nGUbPotqNnH/rwUSt9sbKAaN1b4ZwTktw7XIXUdxjAeb9BFwtJPou87QX3osh\nOiWuWDPiKiCdxEr3vtyw7ArYr1Qu6MKUQ2Uw6lJvRdGYwCxu7Ql/stDuWAal\nVHLlwgRDF2thxtsRYx9A99DDJi1v0tVx9GaHJv6IbYlbXlNIFkKZMResC8As\nD+9PpSOjOfGr3IX5QeZ7Or43DYUsL4I1xnJdHOlF+isRBOuwvT5HO5TvXvm8\ngfb2d3zHnzX/C3jm5kkElCSQklDcEvZbaWnH4+Zw7o9W0tHFmQc5SQRgbbH7\n9Af4\r\n=150j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.8.1_1555350264708_0.8598505082175993","host":"s3://npm-registry-packages"}},"8.0.0-alpha.1":{"name":"@nrwl/nx","version":"8.0.0-alpha.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@8.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"8ebaa001733476534b0c9f2a8a7477285fd3fd5d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-8.0.0-alpha.1.tgz","fileCount":44,"integrity":"sha512-ZU7GMyhGrSu9MceF6j2T/R3zBIJ9e/GaH3IacpFa8X1EBiHXrLdMyPbuYoUihRSkgOwndcoXjjNAU4cs1zloIg==","signatures":[{"sig":"MEQCIDDpUE7PrtKYAyNQ2/FIiH7KOW1Mv3EyDWhkXlsWvDeMAiAioFhfmZ2RVfNFw6Ierqg5w468D/uraR+4mY2sC+lHLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvHVICRA9TVsSAnZWagAAM+MQAKJKqtINcCQFeOirzGNl\ngfDEVgWqYlpneoZWWeGfIEvM0JSix8cvkQnMFMPF4YwnZMZHJrew904WYbMh\nEZlPYAxutZyKO1ESwLNbElLk4LpG0xd8gsFyBr7QUOx1E5ZjqODrL3UWzkx1\nRxktRNq22MnvR4XO+ev7nNa35uY6kik36fCYKNhfraipSYOr1WoKqEBSbjZc\nHd6M9ySX/iEA5fzulnfJtqMcyEwlH5dqz9JyBhvDXuhnvZutqBK8kSqK3hv0\n0270oEVwEWU620/yrgctVvdL7zRURQVQ67k2gCYW90ynjbBt/yQpJ4krvU1N\nCogEgzCOi5aBNEUmVoG4eWdSoPhSeAnzNZ3OQx7V0AvABFGQYzzz9K7qn5kh\nrfmOssu52CTbKse3MWGSnwVrLn3hg0NTmohKd26Za5ZUVzykdrWcdvbVdwP+\nZ2u1+9LclKfrwDWl/YlFpDwjoO+GAbk6VVKDS3ycPSZOidOUQ1sABGlmtKVS\nvQU3bOjG+oIGdq1dNCQeOmcO+82b+u2T77TPOl+goSGGyNcVY9XaoIGpvLVq\n4zcwLJaXyeTYivFGuHunPctmOAkO5JrfW9oQx7Q6wnaiEtKM5zQcLyF0Rdpx\nDSEqDR8UU9oVltbMTr4PFDMXhlGE6r4uQ5Vs1P98fJ5VdjeI86O5qQ0t8R+T\nwr0h\r\n=1MZw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" width=\"450\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n[![Join the chat at https://gitter.im/nrwl-nx/community](https://badges.gitter.im/nrwl-nx/community.svg)](https://gitter.im/nrwl-nx/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0g97pW0\" target=\"_blank\">  \n    <img \n         width=\"728\"\n         src=\"https://images.ctfassets.net/8eyogtwep6d2/40ASb6l6MR7V0w5ntqZ2yi/b4d439fcf56e50085d1f76df1bee41af/monorepo-banner-angularconsole.png\"  \n         alt=\"Our Newest Enterprise Angular Book\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enterprise Monorepo Patterns](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"*"},"_npmOperationalInternal":{"tmp":"tmp/nx_8.0.0-alpha.1_1555854663972_0.5546453015517452","host":"s3://npm-registry-packages"}},"8.0.0-alpha.2":{"name":"@nrwl/nx","version":"8.0.0-alpha.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@8.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"7e80ea65d7efc4312a0ce2475edf8baed3893fd4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-8.0.0-alpha.2.tgz","fileCount":44,"integrity":"sha512-v0asUke7eMl7/mefVJAHM5W47mI5jO5tah7F00YMqkLqDIvpE36yQCqVHhAXAR5j7ajmkASjsDlLztXsOgcFSw==","signatures":[{"sig":"MEYCIQD4KmPf8UI8ddwCP3n9BaML79QXxkJ2hsD0Ziy9TVzH8gIhAJ26Hhftht72bSVxL+8zjDfrWql9VmoSFqUgjGoD7dps","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvHl4CRA9TVsSAnZWagAAK94QAIrEfgsU3q+me6EZhXYO\n4wCTg4KDFLHMdCPP403Lfrmw1gG9TWzzO53INcEYaiLgadDjivzJHuWj0GlJ\n1HaKNDusJ5vZYoHLm5gD3maZtHxtG7l6AqyPKkAripuC1Iy4okLWMZvg8aqS\n5jN9sVr8VchlzmcK6cv1Ar+SmLUNymGLnyS7fQxSErUQ+7zzJ9WgtqXaLHn2\nxXe91+Dffmj0sNzi8tAJRNiHSTcSzv61O+Gr465MCu7wEOFAclBSrutPfo2U\nPxqCUb/VCn5j/ebO0S+nWiZnJ+kz1Wt/yFIj3w6cCa0l+mXbW8wIUg14Xik1\n300i6l9zJWBiycYehyyw6FE2y78IRbrMUDG/nz4s0TMUoDif71Nw3b6HkdBD\noZh7w89EHep3SAaFth0/cE6NNb8TBc6+W+2QG68/1e6Ofj1qzfQsc/uOYZL4\nB+VlX/UpQrx8llyN8MU2ETFLVoeW21v/C/9ftkeu/79F7vsr0khv27UG/3Q0\nVVaQXPlnw1rJptknh2Smb+F0YtgQy9O4C1NVu54mbcfi1BygtiTUf1UP4r6q\nc/f5A2CUf7f3FxWmvQdw3ln0kmwUySTOv6OoZYPNfTzWiAwwRN/RzrG8U65W\n9iRwqS3TFbsw1J0ui62N2KZXJ3HwWEMes83U560765mnQJ+T8km86AbtSkHT\nB70T\r\n=G4jt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" width=\"450\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n[![Join the chat at https://gitter.im/nrwl-nx/community](https://badges.gitter.im/nrwl-nx/community.svg)](https://gitter.im/nrwl-nx/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0g97pW0\" target=\"_blank\">  \n    <img \n         width=\"728\"\n         src=\"https://images.ctfassets.net/8eyogtwep6d2/40ASb6l6MR7V0w5ntqZ2yi/b4d439fcf56e50085d1f76df1bee41af/monorepo-banner-angularconsole.png\"  \n         alt=\"Our Newest Enterprise Angular Book\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enterprise Monorepo Patterns](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"*"},"_npmOperationalInternal":{"tmp":"tmp/nx_8.0.0-alpha.2_1555855736289_0.5019080913641845","host":"s3://npm-registry-packages"}},"8.0.0-alpha.3":{"name":"@nrwl/nx","version":"8.0.0-alpha.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@8.0.0-alpha.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"d81296a49ed547bfbb78bdbf11a6defd0b005def","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-8.0.0-alpha.3.tgz","fileCount":44,"integrity":"sha512-xtcB7brmNF59pvED6nX36Ouvoav/f5DNbkXsiSRPLmVHuV+Eqf25e+HJb/iDFfV3ujVhNwQKNzkXtRoXMVrssQ==","signatures":[{"sig":"MEUCIQDuTCjOUF7napOewrjYCHoVVX1XfeQrrMJOXJooub3VPQIgcnK0kajkKsLelcrCPei6/Kv+EcpX2hpQ/+a/Xx2ocQ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvIGVCRA9TVsSAnZWagAA4J4QAJwgLknd9gAczzNbcZAp\n89zZ0gErTU4dby9Ick/K2aKjIBUtK2xb0MtEJKcCB7wNxt5JBj10E/kjkB8k\npTBimk3X/rLwPdMVwGnrwtEqByuC3g0KKesvCD8lDT3SBk7p0nWGA3RfJfO6\nyY2xhKv1tHo58NHB2J/PhAjNIKT2L+PPdIjYDY0iK9ulbVxefefbhvE7Qmpc\nenHeih2TuoTiPPbqj09UPsXS4e7leXGzfWMa1npTlznvZ67LqQdvgDaGK6eU\nh0lsXoE5j8SCcTnomMTvpn8WjZ5c2d98tbOaJP6VP7wslOfEhi6/QgGn90Fx\nLn0W3ca9SHDcgY4Ox09V0ZLKhSbMcE641eoUB5gBnLMenXFvwCnGMaa6B5Uf\ntp5mf7Tj4JxDJ74jZO10RpTQHXtFA7/b2QyIjotLjRcBJwF6s37KmBnnkXaa\nL+IUT4p1HHHZGuT8KMnzk2+VlWKtay+O/WWk0CiWO36rsX+i1fhFs192fRb/\nL5NQy9N4NVKsTP/dFjSpcUDOXEz7wrQxKtfB5WMZ51ha/NjcDTVbzSZnW9C1\nUXnU2OqqsHMTn3kaYzww8cEb4cbgErELBWTjphBU0f8SNNpNcOQbyoU8nOYR\n6r/gnHnCowdBpOtQ285UuVum1mKmmjpE7Xx/7kcGtUIC1FeKbnHwNIpUHFgi\nEbZq\r\n=pVSM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" width=\"450\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n[![Join the chat at https://gitter.im/nrwl-nx/community](https://badges.gitter.im/nrwl-nx/community.svg)](https://gitter.im/nrwl-nx/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0g97pW0\" target=\"_blank\">  \n    <img \n         width=\"728\"\n         src=\"https://images.ctfassets.net/8eyogtwep6d2/40ASb6l6MR7V0w5ntqZ2yi/b4d439fcf56e50085d1f76df1bee41af/monorepo-banner-angularconsole.png\"  \n         alt=\"Our Newest Enterprise Angular Book\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enterprise Monorepo Patterns](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"*"},"_npmOperationalInternal":{"tmp":"tmp/nx_8.0.0-alpha.3_1555857813086_0.22255582561999687","host":"s3://npm-registry-packages"}},"8.0.0-alpha.4":{"name":"@nrwl/nx","version":"8.0.0-alpha.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@8.0.0-alpha.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"644eb0930b272b003079b37d2cd1c41eac8f0d4e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-8.0.0-alpha.4.tgz","fileCount":44,"integrity":"sha512-tJNge6otliK6Am6icyZwP3TAqBYgitmMq0OljBTYhe2g3F4a7O/MRmPH4hyCLQ4QpJKrgZMBw2fCrkkP1ZagbA==","signatures":[{"sig":"MEUCIB7UO3nP5ylUIu/w2PODWbAUyqEIJwLR/NMpBEsJ1vJuAiEA+tF/TfC4tV3209cR9JWK8rvR1vo4jU/uc2dGTRoenj4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvj5yCRA9TVsSAnZWagAAlPMP/0a5bFBmYCfl7M84GG/h\nL7Ymt+Xcbg/8AxGUCB2qPfUBIPRz9k99zt3MKg2UsfNSw8W42c7vbGJF4uQu\noST+qa2iTgcHyk3DA1qxldzj1snpYKvPDqzaokJ/4j9IiKuH4CUdwoEetCPT\nBkRZD/c74ASkwpv5FTxcBK41eU8BQx+HhvbNVftiLMYL5P+DAYCmmX6hraM7\nqBN7yROOsoSKiC0e+AuMsdtFA0DTxqO5EFrWwKWZgEIjn/cUUv/Bggovl/VK\nqmo5ocd3ZWDt33Be80hBxJAar+giuLAwddz8808d1WZtxZrR4hvFVA5qro1K\nOnWXzvxi6swXoXkxVX5UoJRseUQx0FREeNDTfqngwfLCe6P5ucE3hTKre697\ndU8kuzjUffaIABk1eJwmp/PYZoi29OVDfQG/zTt8ZxWiVnthNxK26wC1Sjwp\nhFJ36A/1cEK7LOGsNWey3Cbc5SL2JVUMAfy7Iu5Kvm9CEHL2+o9IlDiWZbmF\nVDqG2G8i8SRfQ3YaeEiDrq3PakLrTqz5IQTaqY/m/aL8EUKyyG0b3Ky8tWDb\n1Cz6/6KPgYjLoA0UhDYME/2foFtXG80VGOJi9S1D3aUY8HgoJepr6IM5Xh9k\nN05/jm5ap7baSlkxJi88qEJGAGK5m/n9Qo9sxrkJb85m4GqpUzESIrTCq2Wg\n3yqO\r\n=JNdH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" width=\"450\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n[![Join the chat at https://gitter.im/nrwl-nx/community](https://badges.gitter.im/nrwl-nx/community.svg)](https://gitter.im/nrwl-nx/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0g97pW0\" target=\"_blank\">  \n    <img \n         width=\"728\"\n         src=\"https://images.ctfassets.net/8eyogtwep6d2/40ASb6l6MR7V0w5ntqZ2yi/b4d439fcf56e50085d1f76df1bee41af/monorepo-banner-angularconsole.png\"  \n         alt=\"Our Newest Enterprise Angular Book\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enterprise Monorepo Patterns](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"*"},"_npmOperationalInternal":{"tmp":"tmp/nx_8.0.0-alpha.4_1555971697867_0.2863552554962199","host":"s3://npm-registry-packages"}},"7.8.2":{"name":"@nrwl/nx","version":"7.8.2","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.8.2","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"d09cb8143b2bbc846a25920a3d595415c5193ba7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.8.2.tgz","fileCount":44,"integrity":"sha512-9nvUUAcaL3kduLn0o3MHbyl5iAzO+uCU7dFT/t0nbhqoFIIiS4+OhrhXFCBHn8K/sE6pdN1vdf2yYZvq6TZxGg==","signatures":[{"sig":"MEQCIHR+NdFGR+49p0caerY2lEc4YnsGMzQD4xgoCJEmdE18AiB1j7NLHd1ONbRJQtuJZ7D8rFqn88G8O1bxFfhsFIfTZA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwNn5CRA9TVsSAnZWagAAgrAP/RGLqg/adlZrEHLEd7BZ\n7jo5xBVpYk80aNWwRpWg+I/GTnIhQb9AlI2vExedxCQ/hMyrf2NP9vVwO1EJ\nzEy3T0cUJDoLUn4nwCZ6QMuYubzKA02VCKlGjGU53HGu/WTCdm05paXrnQY0\nxNEA6iqo+FWaijGk/XAK8Cvk8EKbWjxWE+UkVaiT2IEdgzji99gRrOPGsZlD\nVhAJIVZ1PHdEWRxpq8HsX/xleDkfOdGXK8IE2J1sO+SRWmkjI2/NNR24QFzj\n8Yiahdg6zoTUCsuz+4IH5pWepdtKd5y0OQ/jaWlFfqf/MENVbQ6nBBb22UVy\nNalmiiMQZCzlZyc3EANU9g6GrcPbdKUtrKa+YolOs22100q49nEOV+Q23jxQ\nhhFhQDAflW6uQU8OezXFL9VatTwhRhjvVb2RwrsJATdTogTB3D3A00lHzC6n\nXLA+ikZ55aYSgTMJ0qbC7X5b5T+SL0ltqJ6tKQQX5xVrXXVmnxAcKO1xkvMs\nZ+/j2Z/US1ezbmDZB+mDtjRheGBwLnXADMGhmTwkTC8FfsZduthE7/qJQoco\nHfPPrWIbADzmtv6+3fCDbhDFTQAcUE5ESliuLZ/OUDXpFgdNHWB8GA7vHQ7q\nVQZLiCtnVeOfYKzC1yfoKipGtit5v4p7QKdxnpUtUXN6h5qXbUTlLy5wikst\n+oNE\r\n=c7xz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.15.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.8.2_1556142584876_0.00266364293388599","host":"s3://npm-registry-packages"}},"7.8.3":{"name":"@nrwl/nx","version":"7.8.3","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.8.3","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"864377553b4b328830d75509dd808cc517403fdd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.8.3.tgz","fileCount":44,"integrity":"sha512-3YyCWDQTtNoJyT1sUc25ck384dK+Z8To8hGUR7cABGN6I/wmqaUtWcUp4ULtHCaU7uI9MXIRI551omB+NxJDwQ==","signatures":[{"sig":"MEUCIQDT9qHxo/FCtwh4gHG1QtyZ92WAyINdLO8vx3KbEw6lcgIgaE/ARHMNlbokRFAhlBDrNu47j4I/BAs4kwWch/i00QM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwOCtCRA9TVsSAnZWagAAf5EP/3LvF9cmnII3tI9e0EYF\n2BhSGU+muoLtkmCvJyRxPN+zhJl8+geiT/WiGJP28nZsw7CugSjHu6UTHjEX\nCwBVmz3pA1jffPNnl3ZEs8VyY8AyblHQ03FN7Htv7R1+BKFsCDgWY1RhUzEZ\nS23Uot5B2guyDbxjAIEyY6hynAD4VH9xgFXmEnyULAeqiLGFV5ATdIUr4ky7\nhe6kdBIrHfYaTOX7Tgi1g//Hatj/jkvfVTi8W5KGc3kEcGfkvmih47YUIhvc\nwpUhNnuc+pNiG757WuhZY/0URp+VLko7hYGnKMD1KfrbbSxg1eapWmhEJlPW\npkl+eiww4PZIbLQtD6NtT4LOJPlCldDKq2KwvuAzlmz3imqDE+YAzU1NHlto\nqILJ+2vqx7N5sIsY155+kh4h3xPqFL5r2zJzuiqmjiES/6xzlUOhgC0+g3pg\nCB9dnrM9HqMCAIa2WlCweogEFAzG2aGlXT0yYrq5tPzHd2juZnUyu7/zBCBn\ndJCCsrN8CZvAAtdhRUdeJJrwB/Ygu2dEG8QtkH5LQPxQJK87W2m27+VbaWcu\nDwCpUV8VGOxVBHmEEK251DBmN1hFjNEqK5W4dwVSBVFe35fgeX1mB7Jmn3V7\nT8wwVNJsECDIlDZdCxAzBZRxB3MajmnHUl5iGB53VRLsGErzPY5NIKK5ENua\n9ibL\r\n=o2gn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.15.3","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.8.3_1556144300619_0.6236632635484747","host":"s3://npm-registry-packages"}},"7.8.4":{"name":"@nrwl/nx","version":"7.8.4","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.8.4","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"8f46dd89fe9401bf212fc357dd159e223e480834","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.8.4.tgz","fileCount":44,"integrity":"sha512-EqQr/JYYfUXLd+3pRWb7k0zzLvtZOWT3Gd5CqjUa0hjdfWwXyYD9VD5ZkY4sUC+AtCC5iN3NoglFYd07CghUmg==","signatures":[{"sig":"MEYCIQDdiAZI3JLZcrwJ8t/d2q2QVJ7frWbJD+2XhbmgGgBKwQIhAJm1SBwvhmOyiMMANzcP/YdBe4BDMo/TooZd2BzTK+t5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJczfouCRA9TVsSAnZWagAA7bsP/A/e3aDLFJLWNO6MGJCd\n8wg0fuIJ2Za8CfvEC1/dnJ2bW/6w/mQWfdplzI1kXgjwANhYy7TaDFiCmVuB\n7+UOvoNgBSmIVzqd8IZxEzNDpxyd7i00QpS1IqbLhx2hJJhel3gSZRbaAy5a\nKE8I2JsVDkPX82b7oRLyunCd0rKUr0OUJj/CrGoh2kib5DUrO2Qt5hSfFcOK\nbK2OrSOaYayCj/4epQaLXt5l25n+rELFgcXPvD7WqaKfbpDBRzAQHJ9ozuIA\nzOj5rOYoDweyMjTPH/o+e7sKx6nPznxUCIqGGsP/Ayf/X2Oow/Yy0gQCdmPL\n+ZTvQ2FxlTNIx1lxO5H1InU6k7h4dphg0XIZbXpIPJgR8xaaVy1bjEBnVP4S\nclDwJp8fU4H9daJLxhdpyNU27iiDVeVrtiY6SopCqCNDWu/HrvbUN54H2XcE\neX02JXVzDyPGjVG58K4G+z+rnvsVjdsSfbtbIDARoXaCY0Asp0J9SvNacRWV\nGa2CrJswl8eJ+urx7tVo0cuqYvTzkJ2u6Lnzj6KxdcB5hPEA9rI7JVrUeEzZ\n/Tv9d4EcLPOEffl8X85x+sApf54c1KyZ+P71psWxVnX7N3ulWoSJIsg5GIC4\nlBEwNYZBp8Ug5lgc+0X7wqte2a4Qgp1W+V9BgyuKrmd/BQU/hSWDX1a/lXGR\n+7H+\r\n=NAmp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.8.4_1557002797575_0.4835641075883932","host":"s3://npm-registry-packages"}},"7.8.5":{"name":"@nrwl/nx","version":"7.8.5","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.8.5","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"3ec96d4a2d37aafe96a7f949efc4660b70ca5617","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.8.5.tgz","fileCount":44,"integrity":"sha512-KRiSPSs3q7/GROneK6RzkIAahLIOwf1nkYX8C5PnhUup6anPqMfkjKFSkDdwkSkO23RmRFYt69G7o6fc1WpcjA==","signatures":[{"sig":"MEYCIQDZTy3hcXi9wfv2++XyLvrC9tFhU+SXT3DZzWBPr0NLNgIhAIWKoMwtRYxbCZfg6iUUWQFnyCpjBXBr3QxfGnH3bhnb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0aOjCRA9TVsSAnZWagAAhRsQAI58C5D85SzhTcl0VGet\nqMcsthSnHFd1JDxjqMHdpSWaeIOVq7fyOAtQJsAzG2UA7TwUx9/KuDjjtXpk\nQ+E8TrPC9MR5blv8rExR3Xeh+EgWwho5hkcn6FsCYTHsmd4QTPvWuwFnuMVn\nlRJodP/UwiBpOhxYEBOZ8T7wt4lTQC/ztWA55xfT9Zwn4zNftycOb6MJQuYh\nHWOUNyegSnid5PgvkTUpyKgFN8UTMzi3iqRMK7O+lnsktfjtWw1MG+Z1Fqto\nEiYDeN3TwpoiSdKLX9apqKCrkxSxY2Z2013S4z3tjpfdUH3Z68z62fm3h0VM\nlmPQaa5O2MInfe3jjgaed7ovFeUiFYa1L11EqMwlmPnJF9Bj1LF0OE1HH+2T\nhp1AEel4INLFy6otnwzNs/zWNIuXQLjnk0RQ44bXhlLjCQloUWLOAkUHzKQ5\nhIqdo55j+CHALW/DGvwmM63CrXpbBRfxXyia717kimhLIFybuNaYyJu9hKuQ\ns1p3LXYOsZ8mMo1xXOEvA3gQKRq1mB/q/Srk5J8Bw/9bNN7JlvV+/jeggMZN\nBPi2rO1VDyvQAwJMzVoQ7O7hjZcYy+rJcSbWddVLP30ZYtQP8+YthvgWcPlC\nj2DLS7NwN9/xhId4VSQE4mev1nlil2ZnJSK8KouyVtYFP5Gh+f66GHXGKMKB\neIZr\r\n=N8uA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.8.5_1557242786346_0.5729676307581812","host":"s3://npm-registry-packages"}},"7.8.6":{"name":"@nrwl/nx","version":"7.8.6","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.8.6","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"96a1b5ece6ffe0053a8c74b5a225e020b6943037","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.8.6.tgz","fileCount":44,"integrity":"sha512-0mQzBR9xfNcwMl28iwTzmjS/5czeVJNfq1NO/FVlYB0eIRKOGWI78dwFYKPjLMSVmYl+Rc+dcWlgLlekUu+YkQ==","signatures":[{"sig":"MEQCIGmy/mQNYbUNfFH8sUlsnVI0CtJNAwfYIK9SEh/YiAFuAiAOh6oOzjA5/9kUEJHgl2508CAZEVYfF8MueIUXFGcFMg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3C0WCRA9TVsSAnZWagAAkxMP/0mMA4GYxpar/wER54Rg\nDwFSnCJHfofL8Y6M4fHLWOEEjjNNe+YgpnX+VcqVgBBWHZvGENoByKMqEz93\nEE5UfeuRn2m8EhKpYvseGRsDu0nSa9BWjWsRltDv4pwEIqFa1Q2LrnWdyC+4\n/XaPNnw5fTu+89xufIt0aBSmrpt1dy8siq6Z4n2hqWwP4g9CmdBXv82j5vap\nAlrCL6twdhpfRMFXokURAS5UNUMRqtWpmAdDvSL7PRQsGE7hYF/m+uZvkVcy\nEWjqo7VEBMzhrr2AYn8QjabZE/Qhla/B9CwF/tBa23GPRTOI9GBUeVa4krGB\n7cXMTw+AOSisHE1k4OSJqZE8fV2/WRUbiqI8lIT6W8eVgRviY8jcXVwbnUjZ\nfFUOGeUHZggLp9n7ri9sbol1ru1HDc3DzvTaSkojlCG/tbc59JI9X2B+VlSI\nFd/2tOGcipAf3PSNe/EIjTZQgk5e2fh/AdInWRAubv6GVe7GgTLWam75iVA0\nzD7rpZFTtDORFoGC/FwpMS5T5bvRE4vm2S+gf4L4mpEzD8mcimPSLWFcEcCt\n4mY9YQ399VKmW/WiPeri28iGYHIPZMHnqPpZB9lvBrrf6DDfkuFTDw1OrEDC\nxTdJ5B4zfl7wOvZo8PN1APJGfXHhfYtXP7qFl9w9WM84UyJyb9lG8aqQsfGD\nsz+J\r\n=Hfta\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.8.6_1557933333733_0.9573748488362017","host":"s3://npm-registry-packages"}},"7.8.7-beta.1":{"name":"@nrwl/nx","version":"7.8.7-beta.1","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.8.7-beta.1","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"b458a0728e1979d165283095bcfe3041b9c50ffe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.8.7-beta.1.tgz","fileCount":44,"integrity":"sha512-04veK944wmpuGF9zBwHu/OV9WVarEkJt0sAmo8IRxbWLqgecDjFe2YoNUySjiFZpsMz9WBmBwiAb3p2qDcnMAA==","signatures":[{"sig":"MEYCIQCgC3OWQG/q3kpXgPTQxBDTjVPysB9FtamqsHkH9vm5+AIhAIEwCCscKI6bMLw+KK5wWn8uu5Y6emUl/HzV9kJELGIR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411299,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBYS+CRA9TVsSAnZWagAA098P/1u02W3ovNLKDPu67NwT\nVtBaVuLzc745/HFV4RIK9blq/aZpAcVQaAug4Ap9fUfJSgyurPaUVe1eB07j\ntOvLhVCeuvQm3hfUul47ApWsK0v5nBf50TnI058SFvT2ugVuZbf1+bdmnXJo\nJlE6Qxam5nWdou0woZNiewCXrj2PZDz+w+8VY7qgA13Sev3DaCYNikcunRme\n5tH7gtXxcq049LE9dWhHJkSDHOQ16zH29sV28TVxtbO+F1q6f8XedOo4Kq5H\nqY4nsv8y7S7LZJiH0EadWXZwaCDrlOhfwD/Kl3rpWqXGmnK6G3IuF3ACLEr6\nBu+iY+PYuGlC1XRxb+iYBnDUARXuq3+bI7icPq0Nw8msqKq4La90Vl28/A8M\nsUDaLrJO7RFelsqjZzERuHh73dmhwk8WNVdmv2iPy0SEKpqZoHk8HfBWjUPb\n+RFFe+5MmIsg9Dz8ai4uBsC7xSjjyc33Cv4iBa0RjWJRcvMEM+e5LJUf6LBL\naT3gd4DzAQv2lqPfF6lJnNJHAzkZGcXBvUBXTjqeRkdwwwIyeZMrM4tZuGPY\nhQ4Bj1LdoUz6hStBLcFfcCqKlVR6EyASyRWKudAqKYqlUd2j+DHcQyV2qQl6\nIdEhYHLMVcksls6CJpBCxAcs0xcYxJVvfgXOYGbmZtd4OSeg1Ww+IU/1DA2J\nRKb9\r\n=GjBM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","readme":"<p align=\"center\"><img src=\"https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png\" width=\"450\"></p>\n\n<div align=\"center\">\n\n[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx)\n[![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]()\n[![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx)\n[![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx)\n[![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]()\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n</div>\n\n<hr>\n\n<p align=\"center\">\n  <a href=\"https://hubs.ly/H0g97pW0\" target=\"_blank\">  \n    <img \n         width=\"728\"\n         src=\"https://images.ctfassets.net/8eyogtwep6d2/40ASb6l6MR7V0w5ntqZ2yi/b4d439fcf56e50085d1f76df1bee41af/monorepo-banner-angularconsole.png\"  \n         alt=\"Our Newest Enterprise Angular Book\">\n  </a>\n</p>\n\n<hr>\n\n# What is Nx?\n\n🔎 **Nx is a set of Angular CLI power-ups for modern development.**\n\n## Nx Helps You\n\n### Use Modern Tools\n\nUsing Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love.\n\n### Build Full-Stack Applications\n\nWith Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience.\n\n### Develop Like Google\n\nWith Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices.\n\n## A la carte\n\nMost importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that.\n\n## Does it replace Angular CLI?\n\nNx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.**\n\n- You run same `ng build`, `ng serve` commands.\n- You configure your projects in `angular.json`.\n- Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace.\n\n# Getting Started\n\n## Creating an Nx Workspace\n\n**Using `npx`**\n\n```bash\nnpx create-nx-workspace myworkspace\n```\n\n**Using `npm init`**\n\n```bash\nnpm init nx-workspace myworkspace\n```\n\n**Using `yarn create`**\n\n```bash\nyarn create nx-workspace myworkspace\n```\n\n## Adding Nx to an Existing Angular CLI workspace\n\nIf you already have a regular Angular CLI project, you can add Nx power-ups by running:\n\n```bash\nng add @nrwl/schematics\n```\n\n## Creating First Application\n\nUnlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run:\n\n```bash\nng g application myapp\n```\n\nThe result will look like this:\n\n```treeview\n<workspace name>/\n├── README.md\n├── angular.json\n├── apps/\n│   ├── myapp/\n│   │   ├── browserslist\n│   │   ├── jest.conf.js\n│   │   ├── src/\n│   │   │   ├── app/\n│   │   │   ├── assets/\n│   │   │   ├── environments/\n│   │   │   ├── favicon.ico\n│   │   │   ├── index.html\n│   │   │   ├── main.ts\n│   │   │   ├── polyfills.ts\n│   │   │   ├── styles.scss\n│   │   │   └── test.ts\n│   │   ├── tsconfig.app.json\n│   │   ├── tsconfig.json\n│   │   ├── tsconfig.spec.json\n│   │   └── tslint.json\n│   └── myapp-e2e/\n│       ├── cypress.json\n│       ├── src/\n│       │   ├── fixtures/\n│       │   │   └── example.json\n│       │   ├── integration/\n│       │   │   └── app.spec.ts\n│       │   ├── plugins/\n│       │   │   └── index.ts\n│       │   └── support/\n│       │       ├── app.po.ts\n│       │       ├── commands.ts\n│       │       └── index.ts\n│       ├── tsconfig.e2e.json\n│       ├── tsconfig.json\n│       └── tslint.json\n├── libs/\n├── nx.json\n├── package.json\n├── tools/\n├── tsconfig.json\n└── tslint.json\n```\n\nAll the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future.\n\n## Serving Application\n\nRun `ng serve myapp` to serve the newly generated application!\n\nYou are good to go!\n\n## Quick Start & Documentation\n\n### Documentation\n\n- [Nx Documentation and Guides](https://nx.dev)\n- [Nx blog posts](https://blog.nrwl.io/nx/home)\n\n### Books\n\n- [Angular Enterprise Monorepo Patterns](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad)\n\n### Videos\n\n- [5-minute video on how to get started with Nx.](http://nrwl.io/nx)\n- [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces)\n\n### Talks\n\n- [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0)\n- [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y)\n- [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc)\n- [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM)\n\n### Podcasts and Shows\n\n- [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I)\n- [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0)\n\n## Misc\n\n- [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme.\n- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)\n\n## Want to help?\n\nIf you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md).\n\n## Core Team\n\n| Victor Savkin                                                                  | Jason Jean                                                                 | Benjamin Cabanes                                                               |\n| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |\n| ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) |\n| [vsavkin](https://github.com/vsavkin)                                          | [FrozenPandaz](https://github.com/FrozenPandaz)                            | [bcabanes](https://github.com/bcabanes)                                        |\n","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"readmeFilename":"README.md","peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.8.7-beta.1_1560642749230_0.04320260330094294","host":"s3://npm-registry-packages"}},"7.8.7":{"name":"@nrwl/nx","version":"7.8.7","author":{"name":"Victor Savkin"},"license":"MIT","_id":"@nrwl/nx@7.8.7","maintainers":[{"name":"anonymous","email":"hello@nrwl.io"}],"dist":{"shasum":"a85dc5ab30d33ac6cc2234bbc51e229ad85b9b9b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/@nrwl/nx/-/nx-7.8.7.tgz","fileCount":44,"integrity":"sha512-a/pOozIT86IIWue6MSwN2EKO4grJ8My7QMl+g535/vrDg75riyBTkWF+nX6VM/JjGz40Y5nFZaX94924cZWt5g==","signatures":[{"sig":"MEUCICPWvHZFJydK464w0lzmHmq2e9C3hsQzUjjN5u0fDb5SAiEA12p3qRGM9I3iLhuvBTWoBTTYvYjdFNKO9N35bL9unFw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdB59CCRA9TVsSAnZWagAAIT4P/jfZmLtZBs1xpsPQiKW6\nv0TPeMATFeRDOJUIJdFLod2YaHGkLk4Rk9Pgxw8lGQxh2t9x0hOocedT3lDa\nIya6CcHNOd584a5Sb363YjKYsjQc22xlJQB01nga9pR3GW7eldS11j5OjQcI\nwExGsr4sZrQvkKIPPdaEQ286otwYqO45Y4uCaqXbNimBsJNz8YhM7fNMTfiM\n/SiS1EpEY8uEV3xjr1YmnXuX+GaqRXXd5d1r3a1zj7JUH9QWQIAsfo8pIGtE\nMdANWnq5+UZDJVkc1GFUH+zJ758t2fzF9SBvPVBgUUSRvMMV/dp2cFJaxbbr\n82cAM0Erp3TLyGYAYmDfKBF3B+4sww0/IY+s+3JckG7bvC9DvQMev3qPbTvI\nk3r6OLG31mgxXf86iyqn3oBsC6J2yb3myJS2WsIWrBA77gWBupRmEOxjkMPc\nGxdpSH8agMFJLjkTjc44eTIv+iUHiygu15u/6NoQ/xQBwlxODD9zwXiIFaA+\nU5V22m1aLc05+haN0G26flcuEH4YDNaJWia2VUXZOBAB7GIExW2YQFWpBIxY\nF95YIaj8gA/7jcVvQGSoSdEXqmVMRLg9wgW76IGKpqj+fxNLiy+lAabieEFF\nINiJ4PcLoHAEmQiV6x8fxOvqj2bZLO5nXY/m8hlmhjCt5IElDlVSTGaB4z97\nr1FT\r\n=r7DM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"bundles/nrwl-nx.umd.js","types":"nrwl-nx.d.ts","es2015":"esm2015/nrwl-nx.js","module":"esm5/nrwl-nx.js","_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"This package has been replaced by @nrwl/workspace. See https://github.com/nrwl/nx/blob/9.0.0/docs/angular/guides/nx7-to-nx8.md on how to upgrade.","_npmVersion":"6.4.1","description":"Angular CLI power-ups for modern Web development","directories":{},"_nodeVersion":"10.14.1","_hasShrinkwrap":false,"peerDependencies":{"jasmine-marbles":"0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/nx_7.8.7_1560780609491_0.5604551451599589","host":"s3://npm-registry-packages"}}},"name":"@nrwl/nx","time":{"created":"2017-09-01T20:46:02.414Z","modified":"2025-08-27T15:04:13.869Z","0.0.1":"2017-09-01T20:46:02.414Z","0.0.2":"2017-09-01T20:48:02.754Z","0.0.3":"2017-09-21T15:14:20.137Z","0.0.4":"2017-10-04T18:26:14.159Z","0.0.5":"2017-10-06T17:12:02.373Z","0.0.6":"2017-10-11T20:04:12.827Z","0.0.7":"2017-10-12T14:19:55.396Z","0.0.8":"2017-10-22T19:27:59.241Z","0.1.0-beta.0":"2017-10-22T19:58:49.547Z","0.1.0-beta.1":"2017-11-03T14:05:20.511Z","0.1.0":"2017-11-03T14:11:04.786Z","0.1.1":"2017-11-03T14:14:50.630Z","0.2.0":"2017-11-16T20:06:29.858Z","0.2.1":"2017-11-18T20:32:40.667Z","0.2.2":"2017-11-27T01:21:53.112Z","0.3.0":"2017-12-03T20:55:33.850Z","0.4.0":"2017-12-11T19:21:52.229Z","0.5.0":"2017-12-12T20:47:04.416Z","0.5.1":"2017-12-13T19:36:14.210Z","0.5.2":"2017-12-14T14:25:52.865Z","0.5.3":"2017-12-17T16:55:13.445Z","0.5.4":"2017-12-17T17:28:26.668Z","0.5.5":"2017-12-19T22:03:02.184Z","0.5.6":"2017-12-19T22:27:23.920Z","0.5.7":"2017-12-20T01:33:52.380Z","0.5.8":"2017-12-20T16:50:57.824Z","0.5.9":"2017-12-20T18:31:43.003Z","0.6.0":"2017-12-21T17:10:00.786Z","0.6.1":"2018-01-02T20:52:22.100Z","0.6.2":"2018-01-02T21:13:53.945Z","0.6.3":"2018-01-03T14:44:49.271Z","0.6.4":"2018-01-03T16:14:24.691Z","0.6.5":"2018-01-03T18:58:47.216Z","0.6.6":"2018-01-03T20:01:30.455Z","0.6.7":"2018-01-03T20:05:29.467Z","0.6.8":"2018-01-03T21:12:25.849Z","0.6.9":"2018-01-05T15:50:29.108Z","0.6.10":"2018-01-09T02:52:48.793Z","0.6.11":"2018-01-12T16:08:39.569Z","0.6.12":"2018-01-17T00:13:52.037Z","0.6.13":"2018-01-17T00:30:29.605Z","0.6.14":"2018-01-19T20:40:30.576Z","0.6.15":"2018-01-19T21:16:27.733Z","0.6.16":"2018-01-19T21:26:00.905Z","0.6.17":"2018-01-19T21:34:20.006Z","0.6.18":"2018-01-20T23:17:38.127Z","0.7.0-beta.1":"2018-01-21T19:25:47.737Z","0.7.0-beta.2":"2018-01-21T22:26:17.203Z","0.6.19":"2018-01-22T14:40:08.711Z","0.7.0-beta.3":"2018-01-22T15:03:09.498Z","0.6.20":"2018-01-30T19:44:13.247Z","0.7.0":"2018-01-31T01:31:26.049Z","0.7.1":"2018-01-31T14:35:52.776Z","0.7.2":"2018-02-01T16:25:32.086Z","0.7.3":"2018-02-02T14:01:07.388Z","0.7.4":"2018-02-19T16:06:32.656Z","0.8.0-beta.1":"2018-02-26T00:07:05.753Z","0.8.0-beta.2":"2018-02-26T14:09:56.012Z","0.8.0-beta.3":"2018-02-26T16:21:51.440Z","0.8.0-beta.4":"2018-02-27T16:37:01.960Z","0.8.0-beta.5":"2018-02-28T15:39:25.083Z","0.8.0-beta.6":"2018-02-28T15:49:56.094Z","0.8.0":"2018-03-01T19:04:39.652Z","0.9.0-beta.1":"2018-03-13T23:15:41.156Z","0.9.0-beta.3":"2018-03-13T23:41:13.104Z","0.9.0-beta.4":"2018-03-13T23:51:32.409Z","0.9.0-beta.5":"2018-03-15T17:39:44.143Z","0.9.0":"2018-03-16T18:53:32.286Z","0.9.1":"2018-03-19T17:51:05.961Z","0.10.0-beta.1":"2018-04-02T23:34:19.745Z","0.10.0-beta.2":"2018-04-03T17:49:18.783Z","0.10.0":"2018-04-03T19:35:34.105Z","0.10.1":"2018-04-06T01:12:39.883Z","0.10.2":"2018-04-06T01:22:48.947Z","0.11.0":"2018-04-07T00:54:48.815Z","0.11.1":"2018-04-09T13:43:22.512Z","1.0.0-beta.1":"2018-04-13T01:55:46.346Z","1.0.0-beta.2":"2018-04-15T23:18:08.079Z","1.0.0-beta.3":"2018-04-17T20:10:08.029Z","1.0.0":"2018-04-17T20:19:28.553Z","1.0.1-beta.1":"2018-04-18T13:15:00.182Z","1.0.1":"2018-04-24T16:07:04.401Z","1.0.2":"2018-04-24T16:59:43.717Z","1.0.3":"2018-04-26T14:48:27.976Z","2.0.0-alpha.1":"2018-05-07T14:38:44.208Z","2.0.0-alpha.2":"2018-05-07T15:25:04.563Z","6.0.0-alpha.1":"2018-05-11T15:51:37.784Z","6.0.0-alpha.2":"2018-05-13T15:59:18.774Z","6.0.0-alpha.3":"2018-05-13T19:55:37.443Z","6.0.0-rc.1":"2018-05-14T14:24:16.318Z","6.0.0-rc.2":"2018-05-16T12:19:40.919Z","6.0.0-rc.3":"2018-05-17T01:15:01.227Z","6.0.0-rc.4":"2018-05-18T18:20:09.178Z","6.0.0":"2018-05-22T13:35:21.086Z","6.0.1":"2018-05-22T14:04:44.417Z","6.0.2":"2018-05-22T16:30:31.458Z","6.0.3":"2018-05-31T21:06:54.879Z","6.0.4-beta.1":"2018-05-31T22:34:47.048Z","6.0.4":"2018-05-31T23:20:35.848Z","6.1.0-beta.1":"2018-06-09T17:01:45.732Z","6.1.0-beta.2":"2018-06-11T18:28:44.107Z","6.1.0":"2018-06-14T16:05:09.454Z","6.1.1":"2018-07-20T16:05:13.601Z","6.2.0-beta.2":"2018-08-02T18:26:34.656Z","6.2.0-beta.3":"2018-08-02T19:03:43.639Z","6.2.0-beta.4":"2018-08-02T19:34:41.640Z","6.2.0-beta.5":"2018-08-03T21:08:51.896Z","6.2.0-beta.6":"2018-08-06T11:48:10.457Z","6.2.0":"2018-08-06T18:05:17.414Z","6.2.1-beta.1":"2018-08-21T11:16:38.472Z","6.2.1":"2018-08-21T20:07:20.115Z","6.3.0-beta.1":"2018-08-30T00:17:08.888Z","6.3.0-beta.2":"2018-08-30T15:32:38.579Z","6.3.0":"2018-08-30T20:32:45.079Z","6.4.0-beta.1":"2018-09-19T18:58:26.937Z","6.3.1":"2018-09-19T19:19:50.705Z","6.4.0-beta.2":"2018-10-03T11:27:55.894Z","6.4.0-beta.3":"2018-10-04T00:07:06.098Z","6.4.0":"2018-10-06T14:10:49.812Z","7.0.0-beta.1":"2018-10-25T16:33:41.997Z","7.0.0-beta.2":"2018-10-27T17:54:32.324Z","7.0.0":"2018-10-28T16:14:56.950Z","7.0.1":"2018-11-05T18:50:23.274Z","7.0.2":"2018-11-07T22:21:05.102Z","7.1.0-beta.1":"2018-11-18T20:01:10.932Z","7.1.0":"2018-11-20T13:23:39.051Z","7.1.1":"2018-11-26T22:18:10.086Z","7.2.0-beta.1":"2018-12-19T22:51:14.604Z","7.2.0":"2019-01-02T14:48:51.008Z","7.3.0-beta.2":"2019-01-05T22:39:52.980Z","7.3.0":"2019-01-05T23:45:52.633Z","7.4.0-beta.1":"2019-01-15T17:09:16.198Z","7.4.0-beta.2":"2019-01-15T19:29:58.134Z","7.4.0-beta.3":"2019-01-16T17:41:38.977Z","7.4.0-beta.4":"2019-01-16T18:18:58.493Z","7.4.0":"2019-01-16T23:10:08.391Z","7.4.1":"2019-01-18T19:28:04.938Z","6.4.1":"2019-01-21T21:58:15.558Z","7.5.0":"2019-01-22T13:54:56.444Z","7.5.1":"2019-01-30T14:45:05.067Z","7.5.2":"2019-02-12T17:14:48.604Z","7.6.0-beta.1":"2019-02-14T14:55:16.003Z","7.6.0-beta.2":"2019-02-17T19:58:31.562Z","7.6.0-beta.3":"2019-02-18T15:28:39.763Z","7.6.0-beta.4":"2019-02-18T22:21:57.489Z","7.6.0-rc.1":"2019-02-19T20:31:49.701Z","7.6.0":"2019-02-21T13:20:50.240Z","7.6.1":"2019-02-22T19:27:31.008Z","7.6.2":"2019-02-22T22:04:53.996Z","7.7.0-beta.1":"2019-02-25T16:13:19.031Z","7.7.0-beta.2":"2019-02-25T16:23:39.211Z","7.7.0-beta.3":"2019-02-25T16:34:41.760Z","7.7.0-beta.4":"2019-02-25T18:39:07.487Z","7.7.0-beta.5":"2019-02-25T18:48:51.912Z","7.7.0-beta.9":"2019-03-03T14:28:38.915Z","7.7.0-beta.10":"2019-03-03T15:29:54.217Z","7.7.0-beta.11":"2019-03-11T17:35:21.129Z","7.7.0-beta.12":"2019-03-12T14:10:47.091Z","7.7.0-beta.13":"2019-03-12T15:29:46.923Z","7.7.0":"2019-03-13T12:58:22.203Z","7.7.1":"2019-03-14T13:21:49.656Z","7.7.2":"2019-03-18T13:50:20.086Z","7.8.0-beta.1":"2019-04-04T18:00:51.340Z","7.8.0":"2019-04-05T20:02:56.766Z","7.8.1":"2019-04-15T17:44:24.859Z","8.0.0-alpha.1":"2019-04-21T13:51:04.138Z","8.0.0-alpha.2":"2019-04-21T14:08:56.500Z","8.0.0-alpha.3":"2019-04-21T14:43:33.255Z","8.0.0-alpha.4":"2019-04-22T22:21:38.083Z","7.8.2":"2019-04-24T21:49:44.982Z","7.8.3":"2019-04-24T22:18:20.738Z","7.8.4":"2019-05-04T20:46:37.731Z","7.8.5":"2019-05-07T15:26:26.442Z","7.8.6":"2019-05-15T15:15:33.842Z","7.8.7-beta.1":"2019-06-15T23:52:29.343Z","7.8.7":"2019-06-17T14:10:09.589Z"},"readmeFilename":"README.md"}