Skip to content

Commit 497d518

Browse files
committed
lots of housekeeping -- skipLibCheck saved my life
1 parent 07f9a34 commit 497d518

File tree

6 files changed

+4462
-1973
lines changed

6 files changed

+4462
-1973
lines changed

.travis.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
11
language: node_js
2+
23
node_js:
34
- "10.15.3"
5+
46
cache:
57
directories:
6-
- "node_modules"
8+
- node_modules
9+
710
install:
811
- npm install
9-
- npm run compile
12+
1013
before_script:
14+
- npm run compile
15+
- npm test
16+
17+
script:
18+
- node sass
1119
- mkdir gh-pages
1220
- npm run doc.github
21+
- npm run doc.pokemon
1322
- npm run doc.shopify
1423
- npm run doc.starwars-js
15-
- npm run doc.starwars
24+
- npm run doc.starwars

lib/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import {
1616
Schema,
1717
TypeRef,
1818
} from './interface';
19+
1920
import {
2021
Command,
2122
NoParams,
@@ -186,7 +187,6 @@ export class GraphQLDocumentor extends Command<Flags, Params> {
186187
}
187188

188189
getProjectPackage(input: Input) {
189-
190190
let packageJSON: any & { graphqldoc: any };
191191

192192
try {

lib/utility/plugin.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { getFilenameOf } from './introspection';
1717
/**
1818
* Plugin Base implementation
1919
*/
20+
// @ts-ignore
2021
export abstract class Plugin implements PluginInterface, PluginImplementedInterface {
2122

2223
static collect<T>(collection: T[][]): T[] {

0 commit comments

Comments
 (0)