Skip to content

Commit 83ab69a

Browse files
committed
fixes for canary
1 parent 71bdb8e commit 83ab69a

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ This project integrates GraphQL AST parser and ESLint.
1212
- 🚀 Extended type info for more advanced usages
1313
- 🚀 Supports ESLint directives (for example: `disable-next-line`)
1414
- 🚀 Easily extendable - supports custom rules based on GraphQL's AST and ESLint API.
15+
- 🚀 Validates, lints, prettifies and checks for best practices across GraphQL schema and GraphQL operations
1516

1617
Special thanks to [ilyavolodin](https://github.com/ilyavolodin) for his work on a similar project!
1718

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
- [`prettier`](./rules/prettier.md)
1414
- [`require-description`](./rules/require-description.md)
1515

16-
## Writing your own rules
16+
## Further Reading
1717

18-
TBD
18+
- [Writing Custom Rules](./custom-rules.md)

docs/custom-rules.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Writing Custom Rules
2+
3+
To get started with your own rules, start by understanding how
4+
5+
TBD

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
"prebuild": "rimraf packages/*/dist",
1313
"build": "tsc --project tsconfig.json && bob build",
1414
"test": "jest",
15+
"prerelease": "yarn build",
16+
"release": "changeset publish",
17+
"release:canary": "(node scripts/canary-release.js && yarn build && yarn changeset publish --tag alpha) || echo Skipping Canary...",
1518
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{ts,tsx,graphql,yml}\""
1619
},
1720
"devDependencies": {

0 commit comments

Comments
 (0)