[CORL-314] Rename to Coral (#2318)

* chore: rename talk to coral

* fix: lint and unit tests

* fix: snapshot
This commit is contained in:
Kiwi
2019-05-22 21:32:24 +02:00
committed by GitHub
parent 3ea696fcc8
commit 6da97c57d7
1017 changed files with 3007 additions and 3001 deletions
+3 -4
View File
@@ -1,15 +1,14 @@
---
name: Introduction
route: '/'
route: "/"
---
# Introduction
## Running the Talk V5
## Running the Coral V5
Run this command to start Talk V5 in watch mode:
Run this command to start Coral V5 in watch mode:
```sh
npm run watch
```
+2 -2
View File
@@ -14,7 +14,7 @@ https://github.com/babel/babel/issues/8167#issuecomment-397295483
## Relay Client Side Schema Extensions
We use Client Side Schema Extension in `Relay` to store client and UI related state. It works great, the only limitation currently is that locally created `Records` are garbage collected. We created a little helper in `talk-framework/lib/relay/createAndRetain.ts` that creates and retains these `Records` forever. Hopefully this gets resolved and we don't need to do this kind of manual lifecycle management.
We use Client Side Schema Extension in `Relay` to store client and UI related state. It works great, the only limitation currently is that locally created `Records` are garbage collected. We created a little helper in `coral-framework/lib/relay/createAndRetain.ts` that creates and retains these `Records` forever. Hopefully this gets resolved and we don't need to do this kind of manual lifecycle management.
Related: https://github.com/facebook/relay/issues/1656#issuecomment-374079965
@@ -25,7 +25,7 @@ import {
createAndRetain,
LOCAL_ID,
LOCAL_TYPE,
} from "talk-framework/lib/relay";
} from "coral-framework/lib/relay";
commitLocalUpdate(environment, s => {
const root = s.getRoot();