Skip to content

Commit

Permalink
refactor: redesign docs structure (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat authored May 14, 2022
1 parent 7af9637 commit 6615f03
Show file tree
Hide file tree
Showing 100 changed files with 3,770 additions and 2,815 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "qwik-monorepo",
"version": "0.0.20-2",
"version": "0.0.20-3",
"scripts": {
"build": "yarn node scripts --tsc --build --api --eslint --platform-binding --wasm",
"build.platform": "yarn node scripts --platform-binding",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-qwik/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-qwik",
"version": "0.0.20-2",
"version": "0.0.20-3",
"description": "Interactive CLI and API for generating Qwik projects.",
"bin": "create-qwik",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/functions/[[path]].ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const onRequestGet: PagesFunction = async ({ request, next, waitUntil })
const opts: RenderToStringOptions = {
url: request.url,
base: '/build/',
manifest,
manifest: manifest as any,
prefetchStrategy: {
symbolsToPrefetch: 'events-document',
implementation: 'link-prefetch',
Expand Down
36 changes: 36 additions & 0 deletions packages/docs/pages/docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Guide

## Guides

- [Overview](overview.mdx)
- [Getting Started](getting-started.mdx)
- [Think Qwik](think-qwik.mdx)

## Component API

- [Overview](components/overview.mdx)
- [Anatomy](components/anatomy.mdx)
- [Hooks](components/hooks.mdx)
- [Events](components/events.mdx)
- [Lite elements](components/lite-components.mdx)
- [Content projection](components/projection.mdx)
- [Rendering](components/rendering.mdx)

## Concepts

- [Resumable](concepts/resumable.mdx)
- [Progressive](concepts/progressive.mdx)
- [Reactive](concepts/reactivity.mdx)

## Advanced

- [Containers](advanced/container.mdx)
- [Optimizer](advanced/optimizer.mdx)
- [QRL](advanced/qrl.mdx)
- [Qwikloader](advanced/qwikloader.mdx)

## Community

- [Github](https://github.com/BuilderIO/qwik)
- [@QwikDev](https://twitter.com/QwikDev)
- [Discord](https://qwik.builder.io/chat)
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ title: Containers

# Containers

**\*NOTE**: Work in progress / Not fully implemented\*

Containers are a way to break up an application into smaller parts. We call these parts containers. Containers bring several benefits. Each container on the page can independently be:

- **resumed**: Each container can be resumed independently from all other components on the page. Independent resumability further reduces the amount of state which resume deserializes.
Expand Down
Loading

0 comments on commit 6615f03

Please sign in to comment.