Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit f87cdf2

Browse files
committed
fix main and types in package.json, prepare v0.2.2
1 parent 4eacdb9 commit f87cdf2

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.2.2
4+
5+
- Fix `main` and `types` in `package.json`
6+
37
## v0.2.1
48

59
- Set User-Agent header for all requests #6

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-monkey",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "A test framework and CLI for running fully automated, randomized tests against any GraphQL API.",
55
"keywords": [
66
"graphql",
@@ -14,8 +14,8 @@
1414
],
1515
"license": "ISC",
1616
"module": "src/index.ts",
17-
"main": "dist/index.js",
18-
"types": "dist/index.d.ts",
17+
"main": "dist/src/index.js",
18+
"types": "dist/src/index.d.ts",
1919
"bin": {
2020
"graphql-monkey": "./dist/src/bin.js",
2121
"gqlm": "./dist/src/bin.js"

0 commit comments

Comments
 (0)