Upgrade Lerna and require prettier. Some format changes

This commit is contained in:
Timothy Farrell 2018-08-22 15:22:59 -05:00
parent f80ab7f5d8
commit bd2b1d99b9
4 changed files with 13 additions and 10 deletions

View File

@ -3,7 +3,8 @@
"chrome-launcher": "^0.10.2",
"chrome-remote-interface": "^0.25.5",
"husky": "1.0.0-rc.13",
"lerna": "2.0.0-beta.32"
"lerna": "3.1.4",
"prettier": "1.14.2"
},
"scripts": {
"check_code_format": "nodejs node_modules/prettier/bin-prettier.js --config ./prettier.config.js --list-different \"{.,{packages,bin}/**/!(dist)}/*.{js,json,md}\"",

View File

@ -6,8 +6,8 @@ and derived state.
# [property](./src/property.js)
A `property` is a simple value store that can report when its value changes. It is good for wrapping
external values passed into a component so compute types can depend on them and only recompute
when these values change. It can also be used to receive events such as _window.onresize_ to always
external values passed into a component so compute types can depend on them and only recompute when
these values change. It can also be used to receive events such as _window.onresize_ to always
provide the current viewport size.
## Usage
@ -174,7 +174,9 @@ const getToken = stream(
### Read
```js
if (await getToken()) { /* do stuff with the token */ }
if (await getToken()) {
/* do stuff with the token */
}
```
Call it to receive the stored value, recomputing if necessary.

View File

@ -7,10 +7,10 @@ metadata without having the raw data bogging down your PouchDB database.
## Overview
Attachment Proxy works by intercepting attachments bound for the pouchdb backend and passing them to
a custom `save` function that will return a blob to be saved in the pouchdb document. The returned
blob should be a smaller *sentry* blob with just enough information needed to fetch the full version
that is being proxied. `stringToBlob` is provided to make this process easier for simple string
identifier cases. Alternatively, you can pass the original attachment through if you do not want it
a custom `save` function that will return a blob to be saved in the pouchdb document. The returned
blob should be a smaller _sentry_ blob with just enough information needed to fetch the full version
that is being proxied. `stringToBlob` is provided to make this process easier for simple string
identifier cases. Alternatively, you can pass the original attachment through if you do not want it
to be proxied.
When an attachment is requested, the document attached blob (returned from `save`) will be provided

View File

@ -131,7 +131,7 @@ const db = PDB('type_example');
export const Contact = new ContactHandler(db, 'contact');
const doc = await Contact.getOrCreate({
name: "John Doe",
email: "jd@example.com"
name: 'John Doe',
email: 'jd@example.com'
});
```