Skip to content

Commit 39a9324

Browse files
committed
2.0.0-beta.2
* Type refinement * tsconfig optimizations
1 parent bc66cc9 commit 39a9324

File tree

13 files changed

+497
-353
lines changed

13 files changed

+497
-353
lines changed

.github/workflows/greetings.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Greetings
2+
3+
on: [pull_request, issues]
4+
5+
jobs:
6+
greeting:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/first-interaction@v1
10+
with:
11+
repo-token: ${{ secrets.GITHUB_TOKEN }}
12+
issue-message: 'Message that will be displayed on users'' first issue'
13+
pr-message: 'Message that will be displayed on users'' first pr'

package-lock.json

+349-144
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+22-18
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@
6565
},
6666
"sourcemap": true
6767
}
68+
],
69+
[
70+
"pika-plugin-typedefs-to-flow"
6871
]
6972
]
7073
},
@@ -77,30 +80,31 @@
7780
"@djthoms/eslint-config": "^2.0.1",
7881
"@djthoms/prettier-config": "^1.0.0",
7982
"@pika/pack": "^0.5.0",
80-
"@pika/plugin-build-node": "^0.7.1",
81-
"@pika/plugin-build-web": "^0.7.1",
82-
"@pika/plugin-ts-standard-pkg": "^0.7.1",
83-
"@testing-library/jest-dom": "^4.2.3",
84-
"@testing-library/react": "^9.3.1",
85-
"@testing-library/react-hooks": "^3.1.1",
83+
"@pika/plugin-build-node": "^0.8.1",
84+
"@pika/plugin-build-web": "^0.8.1",
85+
"@pika/plugin-ts-standard-pkg": "^0.8.1",
86+
"@testing-library/jest-dom": "^4.2.4",
87+
"@testing-library/react": "^9.3.3",
88+
"@testing-library/react-hooks": "^3.2.1",
8689
"@types/classnames": "^2.2.9",
87-
"@types/jest": "^24.0.21",
88-
"@types/react": "^16.9.11",
89-
"babel-jest": "^24.9.0",
90-
"coveralls": "^3.0.7",
91-
"eslint": "^6.6.0",
92-
"husky": "^3.0.9",
90+
"@types/jest": "^24.0.23",
91+
"@types/react": "^16.9.16",
92+
"coveralls": "^3.0.9",
93+
"eslint": "^6.7.2",
94+
"flowgen": "^1.10.0",
95+
"husky": "^3.1.0",
9396
"jest": "^24.9.0",
9497
"npm-run-all": "^4.1.5",
9598
"pika-plugin-legacy-browser": "^1.1.1",
96-
"prettier": "^1.18.2",
99+
"pika-plugin-typedefs-to-flow": "0.0.2",
100+
"prettier": "^1.19.1",
97101
"pretty-checkbox": "^3.0.3",
98-
"react": "^16.11.0",
99-
"react-dom": "^16.11.0",
100-
"react-test-renderer": "^16.11.0",
102+
"react": "^16.12.0",
103+
"react-dom": "^16.12.0",
104+
"react-test-renderer": "^16.12.0",
101105
"rimraf": "^3.0.0",
102-
"ts-jest": "^24.1.0",
103-
"typescript": "^3.6.4"
106+
"ts-jest": "^24.2.0",
107+
"typescript": "^3.7.3"
104108
},
105109
"dependencies": {
106110
"classnames": "^2.2.6"

0 commit comments

Comments
 (0)