Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion docs/building-apps.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Building Apps
order: 4
sidebar:
order: 5
---
## Packaging Source Code
```none
Expand Down
3 changes: 2 additions & 1 deletion docs/developing-a-template.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Developing a Template
order: 10
sidebar:
order: 11
---
## Static Templates

Expand Down
3 changes: 2 additions & 1 deletion docs/ejecting-apps.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Ejecting Apps
order: 8
sidebar:
order: 9
---
## Converting to a Standalone App Package

Expand Down
2 changes: 2 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
title: Enact CLI Development Tool
sidebar:
order: 1
---

The Enact CLI package provides a command-line tool for creating and building Enact applications. It leverages powerful open source tools and technologies such as [webpack](https://webpack.js.org), [Babel](https://babeljs.io), [LESS](http://lesscss.org), and [Jest](https://jestjs.io) to provide a development environment for apps that requires zero configuration to get started.
Expand Down
3 changes: 2 additions & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Installation
order: 1
sidebar:
order: 2
---
## Requirements

Expand Down
3 changes: 2 additions & 1 deletion docs/isomorphic-support.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Isomorphic Support
order: 5
sidebar:
order: 6
---
Isomorphic code layout is a special feature which builds projects in a JavaScript layout that can be potentially processed by any environment, such as [NodeJS](https://nodejs.org) or the browser. One main benefit is that this code can be evaluated at build-time and prerendered into the HTML document ahead of time. When the isomorphic option is used, prerendering will be attempted.

Expand Down
3 changes: 2 additions & 1 deletion docs/loading-existing-app.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Loading an Existing App
order: 3
sidebar:
order: 4
---
## Acquire the Source

Expand Down
3 changes: 2 additions & 1 deletion docs/measuring-performance.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Measuring Performance
order: 11
sidebar:
order: 12
---
By default, an app generated from `enact create` with Enact CLI includes a performance relayer that allows you to measure and analyze
the performance of your application using different metrics.
Expand Down
3 changes: 2 additions & 1 deletion docs/serving-apps.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Serving Apps
order: 6
sidebar:
order: 7
---
## Development Server
```none
Expand Down
3 changes: 2 additions & 1 deletion docs/starting-a-new-app.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Starting a New App
order: 2
sidebar:
order: 3
---
## Generating the Base App Template
```none
Expand Down
3 changes: 2 additions & 1 deletion docs/template-management.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Template Management
order: 9
sidebar:
order: 10
---
## Enact CLI Template Support
```none
Expand Down
3 changes: 2 additions & 1 deletion docs/testing-apps.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Testing Apps
order: 7
sidebar:
order: 8
---
## Running Test Specs
```none
Expand Down
Loading