Skip to content
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 1 commit into from
Sep 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 13 additions & 14 deletions integration-tests/gatsby-image/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Copy link
Contributor Author

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.

},
"keywords": [
Expand All @@ -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",
Expand Down
19 changes: 9 additions & 10 deletions integration-tests/path-prefix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand All @@ -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",
Expand Down
11 changes: 5 additions & 6 deletions integration-tests/production-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"gatsby-plugin-manifest": "latest",
"gatsby-plugin-offline": "latest",
"gatsby-plugin-react-helmet": "latest",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-helmet": "^5.2.0"
},
"keywords": [
Expand All @@ -21,16 +21,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",
Expand Down