docs(misc): update READMEs to have alt on <img> tags (#5306)
This commit is contained in:
parent
bd21728255
commit
4a5345363b
@ -7,7 +7,7 @@ We would love for you to contribute to Nx! Read this document to see how to do i
|
||||
Watch this 5-minute video:
|
||||
|
||||
<a href="https://www.youtube.com/watch?v=o11p0zSm0No&feature=youtu.be" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/how-to-contribute.png" width="600"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/how-to-contribute.png" width="600" alt="Nx - How to contribute"></p>
|
||||
</a>
|
||||
|
||||
## Got a Question?
|
||||
|
||||
12
README.md
12
README.md
@ -103,12 +103,12 @@ You are good to go!
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://www.youtube.com/watch?v=mVKMse-gFBI" target="_blank">
|
||||
<p style="text-align: center;">Angular<br><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-angular-video.png" width="350"></p>
|
||||
<p style="text-align: center;">Angular<br><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-angular-video.png" width="350" alt="Nx - Quick Start Video for Angular"></p>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://www.youtube.com/watch?v=E188J7E_MDU" target="_blank">
|
||||
<p style="text-align: center;">React<br><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-react-video.png" width="350"></p>
|
||||
<p style="text-align: center;">React<br><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-react-video.png" width="350" alt="Nx - Quick Start Video for React"></p>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
@ -125,17 +125,17 @@ You are good to go!
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://egghead.io/playlists/scale-react-development-with-nx-4038" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/EGH_ScalingReactNx.png" height="150px"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/EGH_ScalingReactNx.png" height="150px" alt="Nx - Scale React Development with Nx video course"></p>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://www.youtube.com/watch?v=2mYLe9Kp9VM&list=PLakNactNC1dH38AfqmwabvOszDmKriGco" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-workspace-course.png" width="350"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-workspace-course.png" width="350" alt="Nx Workspaces video course"></p>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://nxplaybook.com/p/advanced-nx-workspaces" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/advanced-nx-workspace-course.png" width="350"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/advanced-nx-workspace-course.png" width="350" alt="Nx Advanced Workspaces video course"></p>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
@ -193,7 +193,7 @@ You are good to go!
|
||||
If 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) and watch this video that will help you get started.
|
||||
|
||||
<a href="https://www.youtube.com/watch?v=o11p0zSm0No&feature=youtu.be" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/how-to-contribute.png" width="600"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/how-to-contribute.png" width="600" alt="Nx - How to contribute video"></p>
|
||||
</a>
|
||||
|
||||
## Core Team
|
||||
|
||||
@ -95,6 +95,7 @@ And the template of the generated component will look as follows:
|
||||
<img
|
||||
width="300"
|
||||
src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png"
|
||||
alt="Nx - Powerful, Extensible Dev Tools"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@ -322,6 +323,7 @@ Finally, we can update `app.component.html` to use our shared web component.
|
||||
<img
|
||||
width="300"
|
||||
src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png"
|
||||
alt="Nx - Powerful, Extensible Dev Tools"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ Executors can be written using `@nrwl/devkit` or `@angular-devkit`. Executors wr
|
||||
There are two main differences between an executor and a shell script or an npm script:
|
||||
|
||||
1. Executors encourage a consistent methodology for performing similar actions on unrelated projects. i.e. A developer switching between teams can be confident that `nx build project2` will build `project2` with the default settings, just like `nx build project1` built `project1`.
|
||||
2. Nx can leverage this consistency to perform the same executor across multiple projects. i.e. `nx affected --target==test` will run the `test` executor on every project that is affected by the current code change.
|
||||
2. Nx can leverage this consistency to perform the same executor across multiple projects. i.e. `nx affected --target=test` will run the `test` executor on every project that is affected by the current code change.
|
||||
|
||||
## Executor Definitions
|
||||
|
||||
|
||||
@ -36,7 +36,7 @@ You can always add the Angular plugin to an existing workspace by installing `@n
|
||||
## Quick Start Videos
|
||||
|
||||
<a href="https://www.youtube.com/watch?v=mVKMse-gFBI" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-angular-video.png" width="350"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-angular-video.png" width="350" alt="Nx - Quick Start Videos"></p>
|
||||
</a>
|
||||
|
||||
- [Nx Dev Tools for Monorepos, In-Depth Explainer](https://youtu.be/h5FIGDn5YM0)
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-gatsby.png" width="600"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-gatsby.png" width="600" alt="Nx - Powerful, Extensible Dev Tools"></p>
|
||||
|
||||
{{links}}
|
||||
|
||||
@ -32,7 +32,7 @@ You are good to go!
|
||||
## Quick Start Videos
|
||||
|
||||
<a href="https://www.youtube.com/watch?v=E188J7E_MDU" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-react-video.png" width="350"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-react-video.png" width="350" alt="Nx - Quick Start video"></p>
|
||||
</a>
|
||||
|
||||
- [Nx Dev Tools for Monorepos, In-Depth Explainer (React)](https://www.youtube.com/watch?v=jCf92IyR-GE)
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-next.png" width="600"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-next.png" width="600" alt="Nx - Powerful, Extensible Dev Tools"></p>
|
||||
|
||||
{{links}}
|
||||
|
||||
@ -32,7 +32,7 @@ You are good to go!
|
||||
## Quick Start Videos
|
||||
|
||||
<a href="https://www.youtube.com/watch?v=E188J7E_MDU" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-react-video.png" width="350"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-react-video.png" width="350" alt="Nx - Quick start video"></p>
|
||||
</a>
|
||||
|
||||
- [Nx Dev Tools for Monorepos, In-Depth Explainer (React)](https://www.youtube.com/watch?v=jCf92IyR-GE)
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-react.png" width="600"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-react.png" width="600" alt="Nx - Powerful, Extensible Dev Tools"></p>
|
||||
|
||||
{{links}}
|
||||
|
||||
@ -32,7 +32,7 @@ You can always add the React plugin to an existing workspace by installing `@nrw
|
||||
## Quick Start Videos
|
||||
|
||||
<a href="https://www.youtube.com/watch?v=E188J7E_MDU" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-react-video.png" width="350"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-react-video.png" width="350" alt="Nx - Quick start video"></p>
|
||||
</a>
|
||||
|
||||
- [Nx Dev Tools for Monorepos, In-Depth Explainer (React)](https://www.youtube.com/watch?v=jCf92IyR-GE)
|
||||
|
||||
@ -224,6 +224,7 @@ describe('AppComponent', () => {
|
||||
<img
|
||||
width="450"
|
||||
src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png"
|
||||
alt="Nx - Powerful, Extensible Dev Tools"
|
||||
/>
|
||||
</div>
|
||||
<div>Message: {{ (hello$|async)|json }}</div>
|
||||
@ -293,6 +294,7 @@ export const App = () => {
|
||||
<img
|
||||
width="450"
|
||||
src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png"
|
||||
alt="Nx - Powerful, Extensible Dev Tools"
|
||||
/>
|
||||
</div>
|
||||
<div>{m.message}</div>
|
||||
|
||||
@ -14,17 +14,17 @@
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://egghead.io/playlists/scale-react-development-with-nx-4038" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/EGH_ScalingReactNx.png" height="150px"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/EGH_ScalingReactNx.png" height="150px" alt="Nx - Scale React Development with Nx video course"></p>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://www.youtube.com/watch?v=2mYLe9Kp9VM&list=PLakNactNC1dH38AfqmwabvOszDmKriGco" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-workspace-course.png" width="350"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-workspace-course.png" width="350" alt="Nx Workspaces video course"></p>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://nxplaybook.com/p/advanced-nx-workspaces" target="_blank">
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/advanced-nx-workspace-course.png" width="350"></p>
|
||||
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/advanced-nx-workspace-course.png" width="350" alt="Nx Advanced Workspaces video course"></p>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user