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

fix(gatsby-plugin-styletron): Styletron to peerDependencies #22731

Merged
merged 3 commits into from
May 6, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-styletron/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ rendering support.
## Install

```shell
npm install gatsby-plugin-styletron
npm install gatsby-plugin-styletron styletron-react styletron-engine-atomic
```

## How to use
Expand Down
12 changes: 7 additions & 5 deletions packages/gatsby-plugin-styletron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.8.7",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": "^5.2.7"
"@babel/runtime": "^7.8.7"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"babel-preset-gatsby-package": "^0.3.1",
"cross-env": "^5.2.1"
"cross-env": "^5.2.1",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": "^5.2.7"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styletron#readme",
"keywords": [
Expand All @@ -25,7 +25,9 @@
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"gatsby": "^2.0.0"
"gatsby": "^2.0.0",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": "^5.2.7"
},
"repository": {
"type": "git",
Expand Down