Comparing version 2.0.0 to 2.0.1
@@ -1,5 +0,1 @@ | ||
# BREAKING CHANGES | ||
- Move to ESM [`041ae24`](https://github.com/keindev/gh-gql/commit/041ae24d83a556acdb56341851b7d45c4303e7cf) | ||
# Important Changes | ||
@@ -12,3 +8,3 @@ | ||
- Bumped **[graphql-tag](https://www.npmjs.com/package/graphql-tag/v/2.12.4)** from `2.11.0` to `2.12.4` | ||
- Bumped **[dotenv](https://www.npmjs.com/package/dotenv/v/9.0.0)** from `8.2.0` to `9.0.0` | ||
@@ -20,6 +16,12 @@ </details> | ||
- Bumped **[@babel/preset-env](https://www.npmjs.com/package/@babel/preset-env/v/7.14.0)** from `7.13.15` to `7.14.0` | ||
- Bumped **[@tagproject/ts-package-shared-config](https://www.npmjs.com/package/@tagproject/ts-package-shared-config/v/2.0.1)** from `1.5.8` to `2.0.1` | ||
- Bumped **[changelog-guru](https://www.npmjs.com/package/changelog-guru/v/2.3.1)** from `2.3.0` to `2.3.1` | ||
- Bumped **[ghinfo](https://www.npmjs.com/package/ghinfo/v/1.0.8)** from `1.0.6` to `1.0.8` | ||
- Bumped **[@babel/preset-env](https://www.npmjs.com/package/@babel/preset-env/v/7.14.1)** from `7.14.0` to `7.14.1` | ||
- Bumped **[@tagproject/ts-package-shared-config](https://www.npmjs.com/package/@tagproject/ts-package-shared-config/v/3.0.0)** from `2.0.1` to `3.0.0` | ||
- Bumped **[@types/node](https://www.npmjs.com/package/@types/node/v/15.0.2)** from `15.0.1` to `15.0.2` | ||
- Bumped **[@typescript-eslint/eslint-plugin](https://www.npmjs.com/package/@typescript-eslint/eslint-plugin/v/4.22.1)** from `4.22.0` to `4.22.1` | ||
- Bumped **[@typescript-eslint/parser](https://www.npmjs.com/package/@typescript-eslint/parser/v/4.22.1)** from `4.22.0` to `4.22.1` | ||
- Bumped **[changelog-guru](https://www.npmjs.com/package/changelog-guru/v/3.0.1)** from `2.3.1` to `3.0.1` | ||
- Bumped **[cspell](https://www.npmjs.com/package/cspell/v/5.4.0)** from `5.3.12` to `5.4.0` | ||
- Bumped **[ghinfo](https://www.npmjs.com/package/ghinfo/v/2.0.2)** from `1.0.8` to `2.0.2` | ||
- Bumped **[ts-jest](https://www.npmjs.com/package/ts-jest/v/26.5.6)** from `26.5.5` to `26.5.6` | ||
- Bumped **[typedoc-plugin-markdown](https://www.npmjs.com/package/typedoc-plugin-markdown/v/3.8.0)** from `3.7.2` to `3.8.0` | ||
@@ -26,0 +28,0 @@ </details> |
{ | ||
"name": "gh-gql", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "GitHub GraphQL API helper for TypeScript", | ||
@@ -30,15 +30,14 @@ "homepage": "https://github.com/keindev/gh-gql#readme", | ||
"build": "npm-run-all build:*", | ||
"build:ts": "rimraf lib && tsc --extendedDiagnostics", | ||
"check": "npm-run-all check:*", | ||
"check:lint": "rimraf coverage && eslint \"src/**\" --ext .ts", | ||
"check:spell": "cspell -c .vscode/cspell.json --no-summary \"README.md\" \"src/**/*.ts\"", | ||
"build:ts": "rimraf lib && tsc --extendedDiagnostics --project tsconfig.build.json", | ||
"generate": "npm-run-all generate:*", | ||
"generate:changelog": "changelog generate --bump", | ||
"generate:changelog": "node --experimental-specifier-resolution=node node_modules/.bin/changelog generate --bump", | ||
"generate:docs": "rimraf docs/api && typedoc", | ||
"generate:ghinfo": "ghinfo generate -d media -t utils", | ||
"generate:ghinfo": "node --experimental-specifier-resolution=node node_modules/.bin/ghinfo generate -d media -t utils", | ||
"lint": "npm-run-all lint:*", | ||
"lint:eslint": "rimraf coverage && eslint \"src/**\" --ext .ts", | ||
"lint:spell": "cspell -c .vscode/cspell.json --no-summary \"README.md\" \"src/**/*.ts\"", | ||
"prepare": "npm-run-all prepare:*", | ||
"prepare:config": "ts-package-shared-config", | ||
"prepare:gql": "rimraf src/__generated__ && dotenv -e .env gql-gen --config codegen.yml", | ||
"prepare:config": "node --experimental-specifier-resolution=node node_modules/.bin/ts-package-shared-config", | ||
"prepare:husky": "husky install", | ||
"release": "npm-run-all prepare check test build generate", | ||
"release": "npm-run-all prepare lint test build generate", | ||
"test": "npm-run-all test:*", | ||
@@ -51,3 +50,3 @@ "test:jest": "node --harmony node_modules/.bin/jest" | ||
"dependencies": { | ||
"dotenv": "^8.2.0", | ||
"dotenv": "^9.0.0", | ||
"graphql": "^15.5.0", | ||
@@ -60,3 +59,3 @@ "graphql-request": "^3.4.0", | ||
"@babel/plugin-transform-runtime": "^7.13.15", | ||
"@babel/preset-env": "^7.14.0", | ||
"@babel/preset-env": "^7.14.1", | ||
"@graphql-codegen/add": "^2.0.2", | ||
@@ -69,10 +68,10 @@ "@graphql-codegen/cli": "^1.21.4", | ||
"@graphql-codegen/typescript-operations": "^1.17.16", | ||
"@tagproject/ts-package-shared-config": "^2.0.1", | ||
"@tagproject/ts-package-shared-config": "^3.0.0", | ||
"@types/jest": "^26.0.23", | ||
"@types/node": "^15.0.1", | ||
"@typescript-eslint/eslint-plugin": "^4.22.0", | ||
"@typescript-eslint/parser": "^4.22.0", | ||
"@types/node": "^15.0.2", | ||
"@typescript-eslint/eslint-plugin": "^4.22.1", | ||
"@typescript-eslint/parser": "^4.22.1", | ||
"babel-jest": "^26.6.3", | ||
"changelog-guru": "^2.3.1", | ||
"cspell": "^5.3.12", | ||
"changelog-guru": "^3.0.1", | ||
"cspell": "^5.4.0", | ||
"dotenv-cli": "^4.0.0", | ||
@@ -86,3 +85,3 @@ "eslint": "^7.25.0", | ||
"eslint-plugin-promise": "^5.1.0", | ||
"ghinfo": "^1.0.8", | ||
"ghinfo": "^2.0.2", | ||
"husky": "^6.0.0", | ||
@@ -93,7 +92,7 @@ "jest": "^26.6.3", | ||
"rimraf": "^3.0.2", | ||
"ts-jest": "^26.5.5", | ||
"ts-jest": "^26.5.6", | ||
"typedoc": "^0.20.36", | ||
"typedoc-plugin-markdown": "^3.7.2", | ||
"typedoc-plugin-markdown": "^3.8.0", | ||
"typescript": "^4.2.4" | ||
} | ||
} |
459165
+ Addeddotenv@9.0.2(transitive)
- Removeddotenv@8.6.0(transitive)
Updateddotenv@^9.0.0