forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: test output, webpack resolution, clean build
- remove build test output for ts - actual clean build (use rimraf not rm -rf) - remove css bundling workaround, use seperate entrypoint for webpack bundle vs css
- Loading branch information
Showing
14 changed files
with
43 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/** | ||
* Copyright (c) 2019 GraphQL Contributors. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
import 'regenerator-runtime/runtime'; | ||
|
||
import './css/app.css'; | ||
import './css/codemirror.css'; | ||
import './css/foldgutter.css'; | ||
import './css/info.css'; | ||
import './css/jump.css'; | ||
import './css/lint.css'; | ||
import './css/loading.css'; | ||
import './css/show-hint.css'; | ||
|
||
import './css/doc-explorer.css'; | ||
import './css/history.css'; | ||
|
||
import { GraphiQL } from './components/GraphiQL'; | ||
export default GraphiQL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,6 @@ | |
{ | ||
"path": "../graphql-language-service-utils" | ||
} | ||
] | ||
], | ||
"exclude": ["**/__tests__/**","**/*.spec.*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,6 @@ | |
{ | ||
"path": "../graphql-language-service-utils" | ||
} | ||
] | ||
], | ||
"exclude": ["**/__tests__/**","**/*.spec.*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,6 @@ | |
{ | ||
"path": "../graphql-language-service-types" | ||
} | ||
] | ||
], | ||
"exclude": ["**/__tests__/**","**/*.spec.*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,6 @@ | |
{ | ||
"path": "../graphql-language-service-types" | ||
} | ||
] | ||
], | ||
"exclude": ["**/__tests__/**","**/*.spec.*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
"compilerOptions": { | ||
"rootDir": "./src", | ||
"outDir": "./esm", | ||
} | ||
}, | ||
"exclude": ["**/__tests__/**","**/*.spec.*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
"compilerOptions": { | ||
"rootDir": "./src", | ||
"outDir": "./dist", | ||
} | ||
}, | ||
"exclude": ["**/__tests__/**","**/*.spec.*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,6 @@ | |
{ | ||
"path": "../graphql-language-service-types" | ||
} | ||
] | ||
], | ||
"exclude": ["**/__tests__/**","**/*.spec.*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ | |
"baseUrl": "." | ||
}, | ||
"exclude": [ | ||
"**/__tests__/**", | ||
"**/dist/**.*", | ||
"**/*.spec.ts", | ||
"**/*.spec.js", | ||
|