File tree Expand file tree Collapse file tree 6 files changed +11
-10
lines changed
examples/create-react-app-typescript Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 77
88jobs :
99 main :
10- runs-on : ubuntu-18 .04
10+ runs-on : ubuntu-20 .04
1111 steps :
12- - uses : actions/checkout@v2
12+ - uses : actions/checkout@v3
1313 - name : Install asdf
1414 uses : asdf-vm/actions/setup@v1
15- - uses : actions/cache@v2
15+ - uses : actions/cache@v3
1616 id : asdf-cache
1717 with :
1818 path : |
@@ -22,13 +22,12 @@ jobs:
2222 run : |
2323 cat .tool-versions | cut -f 1 -d ' ' | xargs -n 1 asdf plugin-add || true
2424 asdf plugin-update --all
25- bash ~/.asdf/plugins/nodejs/bin/import-release-team-keyring
2625 asdf install
2726 asdf reshim
2827 - name : Get yarn cache directory path
2928 id : yarn-cache-dir-path
3029 run : echo "::set-output name=dir::$(yarn cache dir)"
31- - uses : actions/cache@v2
30+ - uses : actions/cache@v3
3231 id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
3332 with :
3433 path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
Original file line number Diff line number Diff line change 1- nodejs 12.18.3
2- yarn 1.22.4
1+ nodejs 16.14.0
2+ yarn 1.22.17
33python 3.8.6
Original file line number Diff line number Diff line change 44 "private" : true ,
55 "homepage" : " https://junminahn.github.io/react-page-plugins" ,
66 "dependencies" : {
7- "@react-page-plugins/slate-table" : " 0.1.0-alpha.10 " ,
7+ "@react-page-plugins/slate-table" : " 0.1.0-alpha.11 " ,
88 "@react-page/editor" : " ^1.4.1" ,
99 "@testing-library/jest-dom" : " ^5.11.4" ,
1010 "@testing-library/react" : " ^11.1.0" ,
4747 " last 1 safari version"
4848 ]
4949 }
50- }
50+ }
Original file line number Diff line number Diff line change 11import table from '@react-page-plugins/slate-table' ;
22import '@react-page-plugins/slate-table/lib/index.css' ;
3+ import 'rc-slider/assets/index.css' ;
34
45export const cellPlugins = [ table ( ) ] ;
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ import table from '@react-page-plugins/slate-table';
2121
2222import ' @react-page/editor/lib/index.css' ;
2323import ' @react-page-plugins/slate-table/lib/index.css' ;
24+ import ' rc-slider/assets/index.css' ;
2425
2526const cellPlugins = [table ()];
2627
Original file line number Diff line number Diff line change 11{
22 "name" : " @react-page-plugins/slate-table" ,
3- "version" : " 0.1.0-alpha.10 " ,
3+ "version" : " 0.1.0-alpha.11 " ,
44 "description" : " react-page plugin for slate table" ,
55 "main" : " ./lib/index.js" ,
66 "module" : " ./lib-es/index.js" ,
You can’t perform that action at this time.
0 commit comments