Skip to content

Commit

Permalink
prepare v3 release
Browse files Browse the repository at this point in the history
rc.0
- implemente XState based scheduler
- stabilize schema output
- bump GCG
- upgrade yarn to v3
- rewritten core logics
- upgrade eslint to v8
- upgrade plugin's dependencies
- pin graphql version
- rewrite emitSchema service
- rewriten emitPluginDocument service
- rewriten codegen service
- add TS & Flow examples

rc.1
- skip running on cloud build
- fix config validation
- more contexture reporting
- turn `flattenGeneratedTypesIncludeFragments` true
- stabilize documents
- change maybe type to use `null` instead of `undefined`
- update README

rc.2
- add mdx example
- MDX example to validate regression of [#117]
- update dependencies
- added support for `GatsbyImageData` scalar

Resolves #40
Resolves #103
Resolves #104
Resolves #109
Fixes #113
Fixes #117
Fixes #120
Resolves #122
Fixes #124
Resolves #131
Fixes #139, #99
Resolves #146
Fixes #157
Fixes #159
Fixes #160
Fixes #161
Fixes #162
Resolves #168
Resolves #169
Fixes #171

[#117]: #117
  • Loading branch information
cometkim committed Jun 12, 2022
1 parent 223d73b commit 4ec6433
Show file tree
Hide file tree
Showing 4,216 changed files with 142,311 additions and 47,851 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@
!plugin/babel.config.js
!plugin/jest.config.js

*.typegen.ts

# Hack for flow
plugin/src/types.js
15 changes: 14 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
require('@rushstack/eslint-patch/modern-module-resolution');

module.exports = {
root: true,
env: {
node: true,
},
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: __dirname,
project: [
'./tsconfig.json',
'./plugin/tsconfig.json',
'./examples/**/tsconfig.json',
],
},
plugins: [
'@cometjs',
Expand All @@ -13,5 +21,10 @@ module.exports = {
],
rules: {
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
},
};
11 changes: 4 additions & 7 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
/.yarn/releases/** binary linguist-vendored
/.yarn/plugins/** binary linguist-vendored
/.yarn/cache/** binary linguist-vendored
/.yarn/sdks/** binary linguist-vendored
/.yarn/pnpify/** binary linguist-vendored
/.yarn/** linguist-vendored
/.pnp.* binary linguist-generated

/.pnp.js binary linguist-generated
/.vscode/*.json linguist-language=JSON5

/.vscode/*.json linguist-language=JSON5
**/__generated__/** linguist-generated
58 changes: 9 additions & 49 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,63 +1,23 @@
# Logs
logs
.DS_Store
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next

# Yarn v2
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
# Yarn without P'n'P
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
Loading

0 comments on commit 4ec6433

Please sign in to comment.