Skip to content

Commit 9adce11

Browse files
committed
Move typescript to peer dependencies
- upgrade dev dependency typescript to 2.8.3
1 parent 9b2ce51 commit 9adce11

File tree

2 files changed

+19
-10
lines changed

2 files changed

+19
-10
lines changed

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-plugin-styled-components",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "TypeScript transformer for improving the debugging experience of styled-components",
55
"main": "dist/index.js",
66
"homepage": "https://github.com/Igorbek/typescript-plugin-styled-components",
@@ -20,17 +20,20 @@
2020
},
2121
"typings": "dist/index.d.ts",
2222
"dependencies": {
23-
"ts-is-kind": "^1.0.0",
23+
"ts-is-kind": "^1.0.0"
24+
},
25+
"peerDependencies": {
2426
"typescript": "^2.5.2"
2527
},
2628
"devDependencies": {
2729
"@types/jest": "^19.2.4",
2830
"@types/node": "^7.0.31",
29-
"@types/react": "^16.0.5",
31+
"@types/react": "^16.3.13",
3032
"styled-components": "^2.1.2",
3133
"jest": "20",
3234
"ts-jest": "20",
33-
"ts-node": "^3.3.0"
35+
"ts-node": "^3.3.0",
36+
"typescript": "^2.8.3"
3437
},
3538
"files": [
3639
"dist"

yarn.lock

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@
4141
version "7.0.31"
4242
resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.31.tgz#80ea4d175599b2a00149c29a10a4eb2dff592e86"
4343

44-
"@types/react@^16.0.5":
45-
version "16.0.5"
46-
resolved "https://registry.yarnpkg.com/@types/react/-/react-16.0.5.tgz#d713cf67cc211dea20463d2a0b66005c22070c4b"
44+
"@types/react@^16.3.13":
45+
version "16.3.13"
46+
resolved "https://registry.yarnpkg.com/@types/react/-/react-16.3.13.tgz#47d466462b774556c1174ea0eda22c0578643362"
47+
dependencies:
48+
csstype "^2.2.0"
4749

4850
abab@^1.0.3:
4951
version "1.0.3"
@@ -545,6 +547,10 @@ cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
545547
dependencies:
546548
cssom "0.3.x"
547549

550+
csstype@^2.2.0:
551+
version "2.4.2"
552+
resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.4.2.tgz#158e36c69566bf968da63d0ba14eda1c20e8643a"
553+
548554
dashdash@^1.12.0:
549555
version "1.14.1"
550556
resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
@@ -2262,9 +2268,9 @@ type-check@~0.3.2:
22622268
dependencies:
22632269
prelude-ls "~1.1.2"
22642270

2265-
typescript@^2.5.2:
2266-
version "2.5.2"
2267-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.5.2.tgz#038a95f7d9bbb420b1bf35ba31d4c5c1dd3ffe34"
2271+
typescript@^2.8.3:
2272+
version "2.8.3"
2273+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.8.3.tgz#5d817f9b6f31bb871835f4edf0089f21abe6c170"
22682274

22692275
ua-parser-js@^0.7.9:
22702276
version "0.7.12"

0 commit comments

Comments
 (0)