Skip to content

Commit 5665d4a

Browse files
committed
convert react-async to TS
1 parent d068194 commit 5665d4a

13 files changed

+600
-137
lines changed

babel.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module.exports = {
22
presets: ["@babel/preset-react"],
3-
plugins: ["@babel/plugin-proposal-object-rest-spread"],
3+
plugins: ["@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-class-properties"],
44

55
env: {
66
test: {
7-
presets: ["@babel/preset-env", "@babel/preset-react"],
8-
plugins: ["@babel/plugin-transform-runtime"],
7+
presets: ["@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript"],
8+
plugins: ["@babel/plugin-transform-runtime", "@babel/plugin-proposal-class-properties"],
99
},
1010
},
1111
}

jest.config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ module.exports = {
1717
coverageDirectory: "<rootDir>/coverage",
1818
verbose: true,
1919
bail: true,
20-
transform: { "^.+\\.js$": "babel-jest" },
20+
transform: {
21+
"^.+\\.[tj]s$": "babel-jest",
22+
},
2123
projects: ["<rootDir>/packages/*"],
2224
setupFiles: ["<rootDir>/jest.setup.js"],
2325
testPathIgnorePatterns: ["/node_modules/", "/pkg/"],

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,18 @@
3636
},
3737
"devDependencies": {
3838
"@babel/core": "7.5.5",
39+
"@babel/plugin-proposal-class-properties": "^7.5.5",
3940
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
4041
"@babel/plugin-transform-runtime": "7.5.5",
4142
"@babel/preset-env": "7.5.5",
4243
"@babel/preset-react": "7.0.0",
44+
"@babel/preset-typescript": "^7.3.3",
4345
"@pika/pack": "0.5.0",
4446
"@pika/plugin-build-node": "0.6.0",
4547
"@pika/plugin-build-types": "0.6.0",
4648
"@pika/plugin-build-web": "0.6.0",
4749
"@pika/plugin-standard-pkg": "0.6.0",
50+
"@pika/plugin-ts-standard-pkg": "^0.6.0",
4851
"@storybook/react": "5.2.0-rc.2",
4952
"@testing-library/jest-dom": "4.1.0",
5053
"@testing-library/react": "9.1.3",
@@ -70,4 +73,4 @@
7073
"react-dom": "16.9.0",
7174
"storybook-chromatic": "^2.2.2"
7275
}
73-
}
76+
}

packages/react-async/package.json

+5-11
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,17 @@
2929
"@pika/pack": {
3030
"pipeline": [
3131
[
32-
"@pika/plugin-standard-pkg",
33-
{
34-
"exclude": [
35-
"specs.js",
36-
"*.spec.js"
37-
]
38-
}
32+
"@pika/plugin-ts-standard-pkg"
3933
],
4034
[
4135
"@pika/plugin-build-node"
4236
],
4337
[
4438
"@pika/plugin-build-web"
45-
],
46-
[
47-
"@pika/plugin-build-types"
4839
]
4940
]
41+
},
42+
"devDependencies": {
43+
"typescript": "^3.6.2"
5044
}
51-
}
45+
}

0 commit comments

Comments
 (0)