Skip to content
This repository has been archived by the owner on Sep 11, 2022. It is now read-only.

Commit

Permalink
fix: rename Query in schema to SaelemQuery to not conflict with other…
Browse files Browse the repository at this point in the history
… graphql schemas
  • Loading branch information
favna committed Jul 24, 2020
1 parent aebe8dc commit 4050370
Show file tree
Hide file tree
Showing 2 changed files with 166 additions and 225 deletions.
21 changes: 13 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "GraphQL Horoscope API for Skyra",
"author": "@skyra",
"license": "MIT",
"types": "generated/ts/graphql-pokemon.d.ts",
"main": "generated/ts/graphql-pokemon.d.ts",
"types": "generated/ts/saelem.d.ts",
"main": "generated/ts/saelem.d.ts",
"homepage": "https://www.github.com/skyra-project/saelem",
"scripts": {
"lint": "eslint src scripts tests --ext ts --fix",
Expand All @@ -20,6 +20,9 @@
"up": "yarn upgrade-interactive --latest",
"sversion": "standard-version",
"codegen": "graphql-codegen",
"postcodegen": "run-s typescript:** graphql:**",
"typescript:replace-invalid-code": "replace-in-file /}\\;/g } generated/ts/saelem.d.ts --isRegex",
"graphql:replace-query": "replace-in-file \"type Query \" \"type SaelemQuery \" generated/ts/saelem.graphql",
"cloud:start": "node index.js"
},
"dependencies": {
Expand All @@ -30,16 +33,16 @@
"@commitlint/config-conventional": "^9.1.1",
"@favware/eslint-config": "^5.1.0",
"@favware/ts-config": "^3.0.2",
"@graphql-codegen/cli": "^1.17.0",
"@graphql-codegen/schema-ast": "^1.17.0",
"@graphql-codegen/typescript": "^1.17.0",
"@graphql-codegen/typescript-resolvers": "^1.17.0",
"@graphql-codegen/cli": "^1.17.4",
"@graphql-codegen/schema-ast": "^1.17.4",
"@graphql-codegen/typescript": "^1.17.4",
"@graphql-codegen/typescript-resolvers": "^1.17.4",
"@klasa/console": "^0.0.3",
"@klasa/timestamp": "^0.0.1",
"@types/cheerio": "^0.22.21",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.5",
"@types/node": "^14.0.23",
"@types/jest": "^26.0.7",
"@types/node": "^14.0.26",
"@types/node-fetch": "^2.5.7",
"apollo-server-express": "^2.16.0",
"cheerio": "^1.0.0-rc.3",
Expand All @@ -52,8 +55,10 @@
"jest-circus": "^26.1.0",
"lint-staged": "^10.2.11",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"replace-in-file": "^6.1.0",
"standard-version": "^8.0.2",
"ts-jest": "^26.1.3",
"type-graphql": "^1.0.0-rc.3",
Expand Down

0 comments on commit 4050370

Please sign in to comment.