mirror of
https://github.com/vale981/apollo-server
synced 2025-03-04 17:21:42 -05:00
Tick off Prettier checkmarks, which were present on CI but not locally. (#880)
For reasons unbeknownst to me, the changes below were only being complained about in the CI environment but _not_ when I ran `npm run lint` locally. It seems partially related to the OS its ran on, so I imagine there might be some other sub-dependency at play here. In an effort to fix this, I just spawned a Ubuntu docker image, checked out this repository and ran the same `npm run lint`. This produced identical results to Travis, so I ran `npm run lint-fix`, then saved the `git diff` results and have applied this locally. This should allow us to re-enable `prettier` in CI, though I have plans to separate that from the actual `npm test` runs. This should result in a better workflow for managing PRs.
This commit is contained in:
parent
489c418efb
commit
3a0608ebc5
5 changed files with 32 additions and 30 deletions
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"name": "apollo-server-express",
|
||||
"version": "1.3.2",
|
||||
"description": "Production-ready Node.js GraphQL server for Express and Connect",
|
||||
"description":
|
||||
"Production-ready Node.js GraphQL server for Express and Connect",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"compile": "tsc",
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"name": "graphql-server-express",
|
||||
"version": "1.3.2",
|
||||
"description": "Production-ready Node.js GraphQL server for Express and Connect",
|
||||
"description":
|
||||
"Production-ready Node.js GraphQL server for Express and Connect",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"compile": "tsc",
|
||||
|
|
Loading…
Add table
Reference in a new issue