Skip to content

Commit

Permalink
Merge pull request #5 from fanout/travis-ci
Browse files Browse the repository at this point in the history
Travis CI does linty checks
  • Loading branch information
gobengo authored Jun 11, 2019
2 parents ddb277e + dc892eb commit 51f33ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@
},
"scripts": {
"build": "npm run tsc",
"check-and-build": "npm run prettier:check && npm run tslint && npm run build",
"check": "npm run prettier:check && npm run tsc:check && npm run tslint",
"check-and-build": "npm run check && npm run build",
"prettier": "prettier '{package.json,tsconfig.json,src/**/*.{ts,tsx}}' --write",
"prettier:check": "prettier '{package.json,tsconfig.json,src/**/*.{ts,tsx}}' --check",
"prepublishOnly": "npm run check-and-build",
"preversion": "npm run check-and-build",
"start": "ts-node src/FanoutGraphqlExpressServer",
"test": "ts-node src/test/unit",
"test": "ts-node src/test/unit && npm run check",
"tsc": "tsc -p tsconfig.json",
"tsc:check": "npm run tsc -- --noEmit",
"tslint": "tslint -c tslint.json 'src/**/*.ts'"
},
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as assert from "assert";
import * as express from "express";
import { assertNever } from "fanout-graphql-tools/src/graphql-epcp-pubsub/EpcpPubSubMixin";
import { v4 as uuidv4 } from "uuid";
import { assertNever } from "../graphql-epcp-pubsub/EpcpPubSubMixin";
import { default as AcceptAllGraphqlSubscriptionsMessageHandler } from "../graphql-ws/AcceptAllGraphqlSubscriptionsMessageHandler";
import { filterTable, ISimpleTable } from "../simple-table/SimpleTable";
import WebSocketOverHttpExpress from "../websocket-over-http-express/WebSocketOverHttpExpress";
Expand Down

0 comments on commit 51f33ec

Please sign in to comment.