👕
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
"start": "NODE_ENV=production node index.js",
|
||||
"dev": "NODE_ENV=development nodemon --watch server index.js",
|
||||
"lint": "npm run lint:flow && npm run lint:js",
|
||||
"lint:js": "eslint app",
|
||||
"lint:js": "eslint app server",
|
||||
"lint:flow": "flow",
|
||||
"deploy": "git push heroku master",
|
||||
"heroku-postbuild": "npm run build && npm run sequelize:migrate",
|
||||
|
@ -1,6 +1,5 @@
|
||||
// @flow
|
||||
import Queue from 'bull';
|
||||
import debug from 'debug';
|
||||
import services from './services';
|
||||
import { Collection, Document } from './models';
|
||||
|
||||
|
@ -68,7 +68,11 @@ export default function About() {
|
||||
<strong>Jori Lallo</strong>
|
||||
</div>
|
||||
<div>
|
||||
<a href="https://twitter.com/jorilallo" target="_blank" rel="noopener noreferrer">
|
||||
<a
|
||||
href="https://twitter.com/jorilallo"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
@jorilallo
|
||||
</a>
|
||||
</div>
|
||||
@ -80,7 +84,11 @@ export default function About() {
|
||||
<strong>Tom Moor</strong>
|
||||
</div>
|
||||
<div>
|
||||
<a href="https://twitter.com/tommoor" target="_blank" rel="noopener noreferrer">
|
||||
<a
|
||||
href="https://twitter.com/tommoor"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
@tommoor
|
||||
</a>
|
||||
</div>
|
||||
|
@ -1,7 +1,6 @@
|
||||
// @flow
|
||||
import * as React from 'react';
|
||||
import path from 'path';
|
||||
import fs from 'fs-extra';
|
||||
import Koa from 'koa';
|
||||
import Router from 'koa-router';
|
||||
import sendfile from 'koa-sendfile';
|
||||
|
Reference in New Issue
Block a user