Skip to content
This repository has been archived by the owner on Aug 23, 2021. It is now read-only.

Commit

Permalink
Do maintenance
Browse files Browse the repository at this point in the history
- update Node version
- update dependencies
- fixed rollup/plugin-typescript issue (rollup/plugins#287)
- ensure styled-components uses the same React type version as we do
  • Loading branch information
Mario Mainz committed Jun 22, 2020
1 parent 2141369 commit d9629d0
Show file tree
Hide file tree
Showing 5 changed files with 1,010 additions and 891 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1
defaults: &defaults
working_directory: ~/skeletons
docker:
- image: circleci/node:13.7.0
- image: circleci/node:14.4.0
jobs:
install:
<<: *defaults
Expand Down
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodejs 14.4.0
45 changes: 24 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,36 +6,39 @@
"repository": "https://github.com/ivx/react-skeletons.git",
"author": "[Tobias Lengsholz<tobias.lengsholz@invision.de>, Kai Brückers<kai.brueckers@invision.de>]",
"license": "MIT",
"resolutions": {
"@types/react": "16.9.38"
},
"dependencies": {
"@types/react": "^16.9.19",
"@types/styled-components": "5.0.1"
"@types/react": "^16.9.38",
"@types/styled-components": "5.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/core": "^7.10.3",
"@invisionag/jest-styled-components": "^7.0.1",
"@invisionag/prettier-config-ivx": "^2.0.1",
"@rollup/plugin-typescript": "^3.0.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@invisionag/prettier-config-ivx": "^2.0.2",
"@rollup/plugin-typescript": "^4.1.2",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^5.3.18",
"@storybook/storybook-deployer": "^2.8.5",
"@testing-library/jest-dom": "^5.0.2",
"@testing-library/react": "^10.0.1",
"@types/jest": "^25.1.1",
"@types/node": "^12.12.31",
"@storybook/react": "^5.3.19",
"@storybook/storybook-deployer": "^2.8.6",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^10.3.0",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"babel-loader": "^8.1.0",
"jest": "^25.1.0",
"jest": "^26.0.1",
"prettier": "^2.0.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^2.1.0",
"styled-components": "^5.0.1",
"ts-jest": "^25.1.0",
"tslib": "^1.9.3",
"typescript": "^3.2.2"
"rollup": "^2.18.0",
"styled-components": "^5.1.1",
"ts-jest": "^26.1.1",
"tslib": "^2.0.0",
"typescript": "^3.9.5"
},
"peerDependencies": {
"react": ">=15.x.x",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"rootDir": "src",
"target": "ES5",
"esModuleInterop": true,
"module": "commonjs",
Expand Down

0 comments on commit d9629d0

Please sign in to comment.