-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: peerDep react version compatible 17.x (#132)
* chore: peerDep react version compatible 17.x commit c11cef5 Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 21:06:01 2021 +0800 chore: version commit 5444efc Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 21:03:15 2021 +0800 chore: add dingding notify commit df44514 Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 21:00:37 2021 +0800 chore: add dingding notify commit 43bb31e Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 20:56:15 2021 +0800 chore: add dingding notify commit 9893cdf Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 20:28:14 2021 +0800 chore: add publish commit d4ce841 Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 20:26:18 2021 +0800 chore: add publish commit de1ee63 Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 20:17:38 2021 +0800 chore: add publish commit 0d6daab Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 17:48:04 2021 +0800 chore: add publish commit 5f117f0 Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 17:43:10 2021 +0800 chore: add publish commit 6c03a98 Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 17:30:28 2021 +0800 chore: add publish commit ed328f7 Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 17:27:52 2021 +0800 chore: add publish commit 4dcc1ae Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 17:20:40 2021 +0800 chore: add publish commit 2e2d452 Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 17:18:09 2021 +0800 chore: add publish commit 14951c9 Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 17:15:28 2021 +0800 chore: add publish commit 222681b Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 17:12:46 2021 +0800 chore: add publish commit ca8c36c Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 15:50:19 2021 +0800 chore: react-scripts -> icejs commit 62d81ae Author: liuxiong.lx <[email protected]> Date: Wed Jun 16 15:20:29 2021 +0800 chore: ts error commit 31fa1b7 Author: liuxiong.lx <[email protected]> Date: Tue Jun 15 18:07:12 2021 +0800 chore: upgrade ts to 4 commit 6391127 Author: liuxiong.lx <[email protected]> Date: Tue Jun 15 17:28:38 2021 +0800 chore: fix ci commit 808922e Author: liuxiong.lx <[email protected]> Date: Tue Jun 15 17:21:15 2021 +0800 chore: node_modules cache commit db1dbcb Author: liuxiong.lx <[email protected]> Date: Tue Jun 15 17:19:00 2021 +0800 chore: node_modules cache commit 1140ccc Author: liuxiong.lx <[email protected]> Date: Tue Jun 15 17:17:31 2021 +0800 chore: node_modules cache commit 7fd326a Author: liuxiong.lx <[email protected]> Date: Tue Jun 15 16:56:30 2021 +0800 chore: add lock file to git commit 2518dbf Author: liuxiong.lx <[email protected]> Date: Tue Jun 15 16:48:05 2021 +0800 chore: travis -> github actions commit cca281f Author: liuxiong.lx <[email protected]> Date: Tue Jun 15 15:51:24 2021 +0800 chore: peerDep react version compatible 17.x * chore: link * chore: version * chore: use prettier replace editorconfig * chore: bump version
- Loading branch information
Showing
21 changed files
with
173 additions
and
143 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: ci | ||
on: [push] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js 12.x | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 12.x | ||
registry-url: https://registry.npmjs.org | ||
- name: Set branch name | ||
run: echo >>$GITHUB_ENV BRANCH_NAME=${GITHUB_REF#refs/heads/} | ||
- name: Output branch name | ||
run: echo ${BRANCH_NAME} | ||
- run: npm install | ||
- run: npm run lint:nofix | ||
- run: npm run build | ||
- run: npm run test | ||
- name: Generate coverage | ||
run: npm run coverage | ||
- name: Publish And Notify | ||
run: npm run publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | ||
DING_WEBHOOK: ${{secrets.DING_WEBHOOK}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,3 +63,5 @@ lib | |
package-lock.json | ||
|
||
yarn.lock | ||
|
||
.ice |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module.exports = { | ||
printWidth: 120, | ||
tabWidth: 2, | ||
semi: true, | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"disableRuntime": true, | ||
"entry": "src/index" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.