Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Fix package links on installation/create-new-project #690

Merged
merged 1 commit into from
Jan 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions docs/installation/create-new-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ of that project to scaffold. Each project type harnesses the power of middleware

| Project | Project Type | Middleware |
| --- | --- | --- |
| React | Application | [`@neutrinojs/react`](../react) |
| Preact | Application | [`@neutrinojs/preact`](../preact) |
| Vue | Application | [`@neutrinojs/vue`](../vue) |
| Web | Application | [`@neutrinojs/web`](../web) |
| Node.js | Application | [`@neutrinojs/node`](../node) |
| Web | Library | [`@neutrinojs/library`](../node) |
| React Components | Components | [`@neutrinojs/react-components`](../react-components) |
| React | Application | [`@neutrinojs/react`](../packages/react) |
| Preact | Application | [`@neutrinojs/preact`](../packages/preact) |
| Vue | Application | [`@neutrinojs/vue`](../packages/vue) |
| Web | Application | [`@neutrinojs/web`](../packages/web) |
| Node.js | Application | [`@neutrinojs/node`](../packages/node) |
| Web | Library | [`@neutrinojs/library`](../packages/node) |
| React Components | Components | [`@neutrinojs/react-components`](../packages/react-components) |

## Test Runners

Expand All @@ -50,9 +50,9 @@ the scaffolding phase.

| Test Runner | Middleware |
| --- | --- |
| Jest | [`@neutrinojs/jest`](../jest) |
| Karma | [`@neutrinojs/karma`](../karma) |
| Mocha | [`@neutrinojs/mocha`](../mocha) |
| Jest | [`@neutrinojs/jest`](../packages/jest) |
| Karma | [`@neutrinojs/karma`](../pakages/karma) |
| Mocha | [`@neutrinojs/mocha`](../packages/mocha) |

Be sure to check out the test runner preset to get more information on its features and how files should be named.

Expand All @@ -63,8 +63,8 @@ process. `@neutrinojs/create-project` currently offers two linting middleware ch

| Linting style | Middleware |
| --- | --- |
| Airbnb | With React/Preact: [`@neutrinojs/airbnb`](../airbnb) <br /> Other projects: [`@neutrinojs/airbnb-base`](../airbnb-base) |
| StandardJS | [`@neutrinojs/standardjs`](../standardjs) |
| Airbnb | With React/Preact: [`@neutrinojs/airbnb`](../airbnb) <br /> Other projects: [`@neutrinojs/airbnb-base`](../packages/airbnb-base) |
| StandardJS | [`@neutrinojs/standardjs`](../packages/standardjs) |

## Project Layout

Expand Down