Commits on Source (8)
-
Mihail Dunaev authored
refs #59
1f55d7d3 -
Mihail Dunaev authoredd165137d
-
Aanand Prasad authored1fe365ef
-
Aanand Prasad authored
pubsweet's components use styled-components 2.4.0. Mixing 2.x and 3.x in the same application results in styles not applying, so we have to lock to 2.x as well.
eeef77c8 -
Aanand Prasad authored2e4dc0f0
-
Aanand Prasad authored088dd25b
-
Aanand Prasad authored
59 frontend routing See merge request !8
9bcf1474 -
Mihail Dunaev authored
Style fixes See merge request !12
5cc7a989
Showing
- app/components/app/App.js 20 additions, 0 deletionsapp/components/app/App.js
- app/components/app/App.md 3 additions, 0 deletionsapp/components/app/App.md
- app/components/dashboard/Dashboard.js 11 additions, 0 deletionsapp/components/dashboard/Dashboard.js
- app/components/dashboard/Dashboard.md 5 additions, 0 deletionsapp/components/dashboard/Dashboard.md
- app/components/index.js 4 additions, 0 deletionsapp/components/index.js
- app/components/login/Login.js 5 additions, 0 deletionsapp/components/login/Login.js
- app/components/login/Login.md 5 additions, 0 deletionsapp/components/login/Login.md
- app/components/submission/Submission.js 5 additions, 0 deletionsapp/components/submission/Submission.js
- app/components/submission/Submission.md 3 additions, 0 deletionsapp/components/submission/Submission.md
- app/routes.js 22 additions, 1 deletionapp/routes.js
- package.json 5 additions, 1 deletionpackage.json
- styleguide/components/Wrapper.js 1 addition, 1 deletionstyleguide/components/Wrapper.js
- yarn.lock 5 additions, 83 deletionsyarn.lock
app/components/app/App.js
0 → 100644
app/components/app/App.md
0 → 100644
app/components/dashboard/Dashboard.js
0 → 100644
app/components/dashboard/Dashboard.md
0 → 100644
app/components/index.js
0 → 100644
app/components/login/Login.js
0 → 100644
app/components/login/Login.md
0 → 100644
app/components/submission/Submission.js
0 → 100644
app/components/submission/Submission.md
0 → 100644
... | ... | @@ -29,7 +29,8 @@ |
"react-router-dom": "^4.2.2", | ||
"recompose": "^0.26.0", | ||
"redux": "^3.6.0", | ||
"redux-logger": "^3.0.1" | ||
"redux-logger": "^3.0.1", | ||
"styled-components": "^2.4.0" | ||
}, | ||
"devDependencies": { | ||
"babel-eslint": "^8.0.2", | ||
... | ... | @@ -71,6 +72,9 @@ |
"stylelint-config-pubsweet": "^0.0.3", | ||
"webpack-hot-middleware": "^2.20.0" | ||
}, | ||
"resolutions": { | ||
"grid-styled/styled-components": "2.4.0" | ||
}, | ||
"scripts": { | ||
"test": "echo YOU HAVE NO TESTS, FOOOL!", | ||
"clean": "rm -rf node_modules", | ||
... | ... |