File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " mobx-web-cell" ,
3- "version" : " 0.4.0-rc.2 " ,
3+ "version" : " 0.4.0-rc.3 " ,
44 "license" : " LGPL-3.0" ,
55 "author" : " shiy2008@gmail.com" ,
66 "description" : " MobX adaptor for WebCell v2" ,
2424 },
2525 "dependencies" : {
2626 "mobx" : " >4.0.0 <6.0.0" ,
27- "web-cell" : " ^2.4.0-rc.3 "
27+ "web-cell" : " ^2.4.0-rc.4 "
2828 },
2929 "devDependencies" : {
3030 "@parcel/packager-ts" : " ^2.2.1" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " web-cell" ,
3- "version" : " 2.4.0-rc.3 " ,
3+ "version" : " 2.4.0-rc.4 " ,
44 "description" : " Web Components engine based on JSX & TypeScript" ,
55 "keywords" : [
66 " web" ,
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export function watch(
3333 key : string ,
3434 meta ?: PropertyDescriptor
3535) {
36- const accessor = ! ! meta ;
36+ const accessor = ! ! ( meta ?. get || meta ?. set ) ;
3737 meta = meta || Object . getOwnPropertyDescriptor ( prototype , key ) || { } ;
3838
3939 meta . set =
You can’t perform that action at this time.
0 commit comments