Upgrade Lerna and require prettier. Some format changes

This commit is contained in:
Timothy Farrell 2018-08-22 15:22:59 -05:00
parent 3d1d78cd57
commit 7abf39fc81

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'
});
```