-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove npm-run-all dependency from where it's not needed #8529
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,16 +5,16 @@ | |
"author": "Kyle Mathews <[email protected]>", | ||
"dependencies": { | ||
"cypress": "^3.1.0", | ||
"gatsby": "next", | ||
"gatsby-image": "^2.0.5", | ||
"gatsby-plugin-manifest": "next", | ||
"gatsby-plugin-offline": "next", | ||
"gatsby-plugin-react-helmet": "next", | ||
"gatsby-plugin-sharp": "^2.0.0-rc.7", | ||
"gatsby-source-filesystem": "next", | ||
"gatsby-transformer-sharp": "^2.1.1-rc.3", | ||
"react": "^16.4.2", | ||
"react-dom": "^16.4.2", | ||
"gatsby": "latest", | ||
"gatsby-image": "latest", | ||
"gatsby-plugin-manifest": "latest", | ||
"gatsby-plugin-offline": "latest", | ||
"gatsby-plugin-react-helmet": "latest", | ||
"gatsby-plugin-sharp": "latest", | ||
"gatsby-source-filesystem": "latest", | ||
"gatsby-transformer-sharp": "latest", | ||
"react": "^16.5.2", | ||
"react-dom": "^16.5.2", | ||
"react-helmet": "^5.2.0" | ||
}, | ||
"keywords": [ | ||
|
@@ -25,16 +25,15 @@ | |
"build": "gatsby build", | ||
"develop": "gatsby develop", | ||
"format": "prettier --write '**/*.js'", | ||
"test": "npm-run-all -s build start-server-and-test", | ||
"test": "npm run build && npm run start-server-and-test", | ||
"start-server-and-test": "start-server-and-test serve http://localhost:9000 cy:run", | ||
"serve": "gatsby serve", | ||
"cy:open": "cypress open", | ||
"cy:run": "cypress run --browser chrome" | ||
}, | ||
"devDependencies": { | ||
"npm-run-all": "^4.1.3", | ||
"prettier": "^1.14.2", | ||
"start-server-and-test": "^1.7.0" | ||
"prettier": "^1.14.3", | ||
"start-server-and-test": "^1.7.1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
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 |
---|---|---|
|
@@ -5,12 +5,12 @@ | |
"author": "Kyle Mathews <[email protected]>", | ||
"dependencies": { | ||
"cypress": "^3.1.0", | ||
"gatsby": "^2.0.6", | ||
"gatsby-plugin-manifest": "next", | ||
"gatsby-plugin-offline": "next", | ||
"gatsby-plugin-react-helmet": "next", | ||
"react": "^16.4.2", | ||
"react-dom": "^16.4.2", | ||
"gatsby": "latest", | ||
"gatsby-plugin-manifest": "latest", | ||
"gatsby-plugin-offline": "latest", | ||
"gatsby-plugin-react-helmet": "latest", | ||
"react": "^16.5.2", | ||
"react-dom": "^16.5.2", | ||
"react-helmet": "^5.2.0" | ||
}, | ||
"keywords": [ | ||
|
@@ -21,16 +21,15 @@ | |
"build": "gatsby build --prefix-paths", | ||
"develop": "gatsby develop", | ||
"format": "prettier --write '**/*.js'", | ||
"test": "npm-run-all -s build start-server-and-test", | ||
"test": "npm run build && npm run start-server-and-test", | ||
"start-server-and-test": "start-server-and-test serve http://localhost:9000/blog cy:run", | ||
"serve": "gatsby serve --prefix-paths", | ||
"cy:open": "cypress open", | ||
"cy:run": "cypress run --browser chrome" | ||
}, | ||
"devDependencies": { | ||
"npm-run-all": "^4.1.3", | ||
"prettier": "^1.14.2", | ||
"start-server-and-test": "^1.7.0" | ||
"prettier": "^1.14.3", | ||
"start-server-and-test": "^1.7.1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
also updated to the latest.