-
Notifications
You must be signed in to change notification settings - Fork 407
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #383 from Vagr9K/june-2022-upgrades
June 2022 upgrade cycle (Gatsby v4.17).
- Loading branch information
Showing
65 changed files
with
36,546 additions
and
36,398 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
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,3 +1,14 @@ | ||
{ | ||
"extends": ["stylelint-config-recommended", "stylelint-prettier/recommended"] | ||
"extends": [ | ||
"stylelint-config-recommended", | ||
"stylelint-config-styled-components", | ||
"stylelint-prettier/recommended" | ||
], | ||
|
||
"overrides": [ | ||
{ | ||
"files": ["**/*.tsx"], | ||
"customSyntax": "@stylelint/postcss-css-in-js" | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from "./cypress/config"; |
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
import { defineConfig } from "cypress"; | ||
|
||
export default defineConfig({ | ||
fixturesFolder: false, | ||
e2e: { | ||
baseUrl: "http://localhost:9000", | ||
specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}", | ||
}, | ||
}); |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from "./cypress/config"; |
This file was deleted.
Oops, something went wrong.
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,18 @@ | ||
import { defineConfig } from "cypress"; | ||
import pluginConfig from "./plugins/index"; | ||
|
||
export default defineConfig({ | ||
fixturesFolder: false, | ||
chromeWebSecurity: false, | ||
e2e: { | ||
// We've imported your old cypress plugins here. | ||
// You may want to clean this up later by importing these. | ||
setupNodeEvents(on, config) { | ||
pluginConfig(on); | ||
|
||
return config; | ||
}, | ||
baseUrl: "http://localhost:9000", | ||
specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}", | ||
}, | ||
}); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"private": true, | ||
"name": "gatsby-theme-advanced-demo", | ||
"description": "GatsbyJS theme demo built on top of gatsby-theme-advanced.", | ||
"version": "4.0.0", | ||
"version": "4.17.0", | ||
"author": "Ruben Harutyunyan <[email protected]>", | ||
"keywords": [ | ||
"gatsby", | ||
|
@@ -39,9 +39,9 @@ | |
"test:e2e:ci": "CYPRESS_SUPPORT=y npm run build && start-server-and-test serve http://localhost:9000 cy:run" | ||
}, | ||
"dependencies": { | ||
"gatsby": "^4.0.0", | ||
"gatsby-plugin-image": "^2.0.0", | ||
"gatsby-plugin-mdx": "^3.0.0", | ||
"gatsby": "^4.17.1", | ||
"gatsby-plugin-image": "^2.17.0", | ||
"gatsby-plugin-mdx": "^3.17.0", | ||
"gatsby-theme-advanced": "*", | ||
"lodash": "^4.17.21", | ||
"react": "^17.0.2", | ||
|
@@ -50,49 +50,52 @@ | |
"react-share": "^4.4.0" | ||
}, | ||
"devDependencies": { | ||
"@testing-library/cypress": "^8.0.1", | ||
"@testing-library/jest-dom": "^5.14.1", | ||
"@testing-library/react": "^12.1.2", | ||
"@types/jest": "^27.0.2", | ||
"@types/lodash": "^4.14.176", | ||
"@types/node": "^16.11.4", | ||
"@types/react": "^17.0.31", | ||
"@types/react-dom": "^17.0.10", | ||
"@types/react-helmet": "^6.1.4", | ||
"@types/xml2js": "^0.4.9", | ||
"@typescript-eslint/eslint-plugin": "^5.1.0", | ||
"axe-core": "^4.3.3", | ||
"babel-jest": "^27.3.1", | ||
"babel-preset-gatsby": "^2.0.0", | ||
"cypress": "^8.6.0", | ||
"cypress-axe": "^0.13.0", | ||
"eslint": "^7.32.0", | ||
"eslint-config-airbnb": "^18.2.1", | ||
"eslint-config-airbnb-typescript": "^14.0.1", | ||
"eslint-config-prettier": "^8.3.0", | ||
"@stylelint/postcss-css-in-js": "^0.38.0", | ||
"@testing-library/cypress": "^8.0.3", | ||
"@testing-library/jest-dom": "^5.16.4", | ||
"@testing-library/react": "^12.1.5", | ||
"@types/jest": "^28.1.3", | ||
"@types/lodash": "^4.14.182", | ||
"@types/node": "^18.0.0", | ||
"@types/react": "^17.0.47", | ||
"@types/react-dom": "^17.0.17", | ||
"@types/react-helmet": "^6.1.5", | ||
"@types/xml2js": "^0.4.11", | ||
"@typescript-eslint/eslint-plugin": "^5.29.0", | ||
"axe-core": "^4.4.2", | ||
"babel-jest": "^28.1.1", | ||
"babel-preset-gatsby": "^2.17.0", | ||
"cypress": "^10.2.0", | ||
"cypress-axe": "^1.0.0", | ||
"eslint": "^8.18.0", | ||
"eslint-config-airbnb": "^19.0.4", | ||
"eslint-config-airbnb-typescript": "^17.0.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-cypress": "^2.12.1", | ||
"eslint-plugin-import": "^2.25.2", | ||
"eslint-plugin-jest": "^25.2.2", | ||
"eslint-plugin-jest-dom": "^3.9.2", | ||
"eslint-plugin-jsx-a11y": "^6.4.1", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-jest": "^26.5.3", | ||
"eslint-plugin-jest-dom": "^4.0.2", | ||
"eslint-plugin-jsx-a11y": "^6.6.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"eslint-plugin-react": "^7.26.1", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"eslint-plugin-testing-library": "^4.12.4", | ||
"gatsby-cypress": "^2.0.0", | ||
"gh-pages": "^3.2.3", | ||
"jest": "^27.3.1", | ||
"markdownlint-cli2": "^0.3.2", | ||
"prettier": "^2.4.1", | ||
"eslint-plugin-react": "^7.30.1", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-testing-library": "^5.5.1", | ||
"gatsby-cypress": "^2.17.0", | ||
"gh-pages": "^4.0.0", | ||
"jest": "^28.1.1", | ||
"markdownlint-cli2": "^0.4.0", | ||
"postcss-syntax": "^0.36.2", | ||
"prettier": "^2.7.1", | ||
"start-server-and-test": "^1.14.0", | ||
"stylelint": "^13.13.1", | ||
"stylelint-config-prettier": "^8.0.2", | ||
"stylelint-config-recommended": "^5.0.0", | ||
"stylelint-prettier": "^1.2.0", | ||
"ts-jest": "^27.0.7", | ||
"ts-node": "^10.4.0", | ||
"ts-prune": "^0.10.1", | ||
"typescript": "^4.4.4", | ||
"stylelint": "^14.9.1", | ||
"stylelint-config-prettier": "^9.0.3", | ||
"stylelint-config-recommended": "^8.0.0", | ||
"stylelint-config-styled-components": "^0.1.1", | ||
"stylelint-prettier": "^2.0.0", | ||
"ts-jest": "^28.0.5", | ||
"ts-node": "^10.8.1", | ||
"ts-prune": "^0.10.3", | ||
"typescript": "^4.7.4", | ||
"write-good": "^1.0.8", | ||
"xml2js": "^0.4.23" | ||
} | ||
|
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 @@ | ||
export { default } from "./cypress/config"; |
This file was deleted.
Oops, something went wrong.
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,18 @@ | ||
import { defineConfig } from "cypress"; | ||
import pluginConfig from "./plugins/index"; | ||
|
||
export default defineConfig({ | ||
fixturesFolder: false, | ||
chromeWebSecurity: false, | ||
e2e: { | ||
// We've imported your old cypress plugins here. | ||
// You may want to clean this up later by importing these. | ||
setupNodeEvents(on, config) { | ||
pluginConfig(on); | ||
|
||
return config; | ||
}, | ||
baseUrl: "http://localhost:9000", | ||
specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}", | ||
}, | ||
}); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
Oops, something went wrong.
a7ea9d7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀 Deployed on https://62b86623ef5d2f4ddf50e3d0--amaranth-demo.netlify.app
a7ea9d7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀 Deployed on https://62b866471287494b802058fe--advanced-demo.netlify.app