Skip to content

Commit

Permalink
docs: minor fixes (#688)
Browse files Browse the repository at this point in the history
  • Loading branch information
just-jeb authored Feb 23, 2020
1 parent c148f8c commit 7cd52f8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
5 changes: 2 additions & 3 deletions packages/custom-webpack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@

Allow customizing build configuration without ejecting webpack configuration (`ng eject`)

# This documentation is for version 8 only. Find documentation for version 7 [here](https://github.com/just-jeb/angular-builders/blob/7.x.x/packages/custom-webpack/README.md).
# This documentation is for version 9 only. Find documentation for version 7 [here](https://github.com/just-jeb/angular-builders/blob/7.x.x/packages/custom-webpack/README.md) and for version 8 [here](https://github.com/just-jeb/angular-builders/blob/8.x.x/packages/custom-webpack/README.md).

# Prerequisites:

- [Angular CLI 8](https://www.npmjs.com/package/@angular/cli)
- [@angular-devkit/build-angular](https://npmjs.com/package/@angular-devkit/build-angular) >= 0.801.0
- [Angular CLI 9](https://www.npmjs.com/package/@angular/cli)

# Usage

Expand Down
4 changes: 2 additions & 2 deletions packages/jest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

[![npm version](https://img.shields.io/npm/v/@angular-builders/jest.svg) ![npm (tag)](https://img.shields.io/npm/v/@angular-builders/jest/next.svg) ![npm](https://img.shields.io/npm/dm/@angular-builders/jest.svg)](https://www.npmjs.com/package/@angular-builders/jest)

# This documentation is for version 8 only. Find documentation for version 7 [here](https://github.com/just-jeb/angular-builders/blob/7.x.x/packages/jest/README.md).
# This documentation is for version 9 only. Find documentation for version 7 [here](https://github.com/just-jeb/angular-builders/blob/7.x.x/packages/jest/README.md) and for version 8 [here](https://github.com/just-jeb/angular-builders/blob/8.x.x/packages/jest/README.md).

Allows running `ng test` with Jest instead of Karma & Jasmine.
The builder comes to provide zero configuration setup for Jest while keeping the workspace clear of boilerplate code.

## Prerequisites

- [Angular CLI 8](https://www.npmjs.com/package/@angular/cli)
- [Angular CLI 9](https://www.npmjs.com/package/@angular/cli)
- [Jest 24](https://www.npmjs.com/package/jest)

## Installation
Expand Down
3 changes: 2 additions & 1 deletion packages/jest/examples/multiple-apps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"build": "yarn ng build",
"test": "yarn ng test",
"lint": "yarn ng lint",
"e2e": "yarn ng e2e"
"e2e": "yarn ng e2e",
"postinstall": "ngcc"
},
"private": true,
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/jest/examples/simple-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"build": "yarn ng build",
"test": "yarn ng test",
"lint": "yarn ng lint",
"e2e": "yarn ng e2e"
"e2e": "yarn ng e2e",
"postinstall": "ngcc"
},
"private": true,
"dependencies": {
Expand Down

0 comments on commit 7cd52f8

Please sign in to comment.