-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/wp-use-image-cdn-for-files-in-html
- Loading branch information
Showing
168 changed files
with
3,796 additions
and
1,801 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,3 +74,5 @@ cypress/fixtures | |
cypress/videos | ||
|
||
__history__.json | ||
|
||
src/gatsby-types.d.ts |
5 changes: 5 additions & 0 deletions
5
e2e-tests/development-runtime/cypress/integration/graphql-typegen/fragments-file.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
describe('fragments.graphql', () => { | ||
it('exists in .cache folder', () => { | ||
cy.readFile('.cache/typegen/fragments.graphql') | ||
}) | ||
}) |
20 changes: 20 additions & 0 deletions
20
e2e-tests/development-runtime/cypress/integration/graphql-typegen/graphql-config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
describe('graphql-config', () => { | ||
it('exists in .cache folder with correct data', () => { | ||
cy.readFile('.cache/typegen/graphql.config.json', 'utf-8').then((json) => { | ||
expect(json).to.deep.equal({ | ||
"schema": ".cache/typegen/schema.graphql", | ||
"documents": [ | ||
"src/**/**.{ts,js,tsx,jsx}", | ||
".cache/typegen/fragments.graphql" | ||
], | ||
"extensions": { | ||
"endpoints": { | ||
"default": { | ||
"url": "http://localhost:8000/___graphql" | ||
} | ||
} | ||
} | ||
}) | ||
}) | ||
}) | ||
}) |
5 changes: 5 additions & 0 deletions
5
e2e-tests/development-runtime/cypress/integration/graphql-typegen/schema-file.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
describe('schema.graphql', () => { | ||
it('exists in .cache folder', () => { | ||
cy.readFile('.cache/typegen/schema.graphql') | ||
}) | ||
}) |
5 changes: 5 additions & 0 deletions
5
e2e-tests/development-runtime/cypress/integration/graphql-typegen/ts-types.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
describe('gatsby-types.d.ts', () => { | ||
it('exists in src folder', () => { | ||
cy.readFile('src/gatsby-types.d.ts') | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "babel-plugin-remove-graphql-queries", | ||
"version": "4.14.0-next.2", | ||
"version": "4.14.0-next.3", | ||
"author": "Jason Quense <[email protected]>", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -10,12 +10,12 @@ | |
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/babel-plugin-remove-graphql-queries#readme", | ||
"dependencies": { | ||
"@babel/runtime": "^7.15.4", | ||
"gatsby-core-utils": "^3.14.0-next.2" | ||
"gatsby-core-utils": "^3.14.0-next.3" | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.15.4", | ||
"@babel/core": "^7.15.5", | ||
"babel-preset-gatsby-package": "^2.14.0-next.1", | ||
"babel-preset-gatsby-package": "^2.14.0-next.2", | ||
"cross-env": "^7.0.3" | ||
}, | ||
"peerDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "babel-preset-gatsby-package", | ||
"version": "2.14.0-next.1", | ||
"version": "2.14.0-next.2", | ||
"author": "Philipp Spiess <[email protected]>", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -19,7 +19,7 @@ | |
"@babel/preset-react": "^7.14.0", | ||
"@babel/runtime": "^7.15.4", | ||
"babel-plugin-dynamic-import-node": "^2.3.3", | ||
"core-js": "^3.22.2" | ||
"core-js": "^3.22.3" | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.15.4", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "babel-preset-gatsby", | ||
"version": "2.14.0-next.2", | ||
"version": "2.14.0-next.3", | ||
"author": "Philipp Spiess <[email protected]>", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -22,8 +22,8 @@ | |
"babel-plugin-dynamic-import-node": "^2.3.3", | ||
"babel-plugin-macros": "^3.1.0", | ||
"babel-plugin-transform-react-remove-prop-types": "^0.4.24", | ||
"gatsby-core-utils": "^3.14.0-next.2", | ||
"gatsby-legacy-polyfills": "^2.14.0-next.0" | ||
"gatsby-core-utils": "^3.14.0-next.3", | ||
"gatsby-legacy-polyfills": "^2.14.0-next.1" | ||
}, | ||
"peerDependencies": { | ||
"@babel/core": "^7.11.6", | ||
|
@@ -38,7 +38,7 @@ | |
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.15.4", | ||
"babel-preset-gatsby-package": "^2.14.0-next.1", | ||
"babel-preset-gatsby-package": "^2.14.0-next.2", | ||
"cross-env": "^7.0.3", | ||
"slash": "^3.0.0" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "gatsby-cli", | ||
"description": "Gatsby command-line interface for creating new sites and running Gatsby commands", | ||
"version": "4.14.0-next.2", | ||
"version": "4.14.0-next.3", | ||
"author": "Kyle Mathews <[email protected]>", | ||
"bin": { | ||
"gatsby": "cli.js" | ||
|
@@ -26,13 +26,13 @@ | |
"common-tags": "^1.8.2", | ||
"configstore": "^5.0.1", | ||
"convert-hrtime": "^3.0.0", | ||
"create-gatsby": "^2.14.0-next.2", | ||
"create-gatsby": "^2.14.0-next.3", | ||
"envinfo": "^7.8.1", | ||
"execa": "^5.1.1", | ||
"fs-exists-cached": "^1.0.0", | ||
"fs-extra": "^10.0.0", | ||
"gatsby-core-utils": "^3.14.0-next.2", | ||
"gatsby-telemetry": "^3.14.0-next.2", | ||
"fs-extra": "^10.1.0", | ||
"gatsby-core-utils": "^3.14.0-next.3", | ||
"gatsby-telemetry": "^3.14.0-next.3", | ||
"hosted-git-info": "^3.0.8", | ||
"is-valid-path": "^0.1.1", | ||
"joi": "^17.4.2", | ||
|
@@ -45,7 +45,7 @@ | |
"prompts": "^2.4.2", | ||
"redux": "4.1.2", | ||
"resolve-cwd": "^3.0.0", | ||
"semver": "^7.3.5", | ||
"semver": "^7.3.7", | ||
"signal-exit": "^3.0.6", | ||
"source-map": "0.7.3", | ||
"stack-trace": "^0.0.10", | ||
|
@@ -65,7 +65,7 @@ | |
"@rollup/plugin-replace": "^2.4.2", | ||
"@types/hosted-git-info": "^3.0.2", | ||
"@types/yargs": "^15.0.14", | ||
"babel-preset-gatsby-package": "^2.14.0-next.1", | ||
"babel-preset-gatsby-package": "^2.14.0-next.2", | ||
"cross-env": "^7.0.3", | ||
"ink": "^3.2.0", | ||
"ink-spinner": "^4.0.3", | ||
|
@@ -75,7 +75,7 @@ | |
"rollup": "^2.66.1", | ||
"rollup-plugin-auto-external": "^2.0.0", | ||
"rollup-plugin-internal": "^1.0.4", | ||
"typescript": "^4.5.5" | ||
"typescript": "^4.6.4" | ||
}, | ||
"files": [ | ||
"lib/", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "gatsby-dev-cli", | ||
"description": "CLI helpers for contributors working on Gatsby", | ||
"version": "4.14.0-next.1", | ||
"version": "4.14.0-next.2", | ||
"author": "Kyle Mathews <[email protected]>", | ||
"bin": { | ||
"gatsby-dev": "./dist/index.js" | ||
|
@@ -16,7 +16,7 @@ | |
"del": "^6.0.0", | ||
"execa": "^5.1.1", | ||
"find-yarn-workspace-root": "^2.0.0", | ||
"fs-extra": "^10.0.0", | ||
"fs-extra": "^10.1.0", | ||
"got": "^11.8.3", | ||
"is-absolute": "^1.0.0", | ||
"lodash": "^4.17.21", | ||
|
@@ -27,7 +27,7 @@ | |
"devDependencies": { | ||
"@babel/cli": "^7.15.4", | ||
"@babel/core": "^7.15.5", | ||
"babel-preset-gatsby-package": "^2.14.0-next.1", | ||
"babel-preset-gatsby-package": "^2.14.0-next.2", | ||
"cross-env": "^7.0.3" | ||
}, | ||
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-dev-cli#readme", | ||
|
Oops, something went wrong.