File tree Expand file tree Collapse file tree 3 files changed +40
-0
lines changed
docs/documentation/docs/about Expand file tree Collapse file tree 3 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ if [ -z " $husky_skip_init " ]; then
3
+ debug () {
4
+ [ " $HUSKY_DEBUG " = " 1" ] && echo " husky (debug) - $1 "
5
+ }
6
+
7
+ readonly hook_name=" $( basename " $0 " ) "
8
+ debug " starting $hook_name ..."
9
+
10
+ if [ " $HUSKY " = " 0" ]; then
11
+ debug " HUSKY env variable is set to 0, skipping hook"
12
+ exit 0
13
+ fi
14
+
15
+ if [ -f ~ /.huskyrc ]; then
16
+ debug " sourcing ~/.huskyrc"
17
+ . ~ /.huskyrc
18
+ fi
19
+
20
+ export readonly husky_skip_init=1
21
+ sh -e " $0 " " $@ "
22
+ exitCode=" $? "
23
+
24
+ if [ $exitCode != 0 ]; then
25
+ echo " husky - $hook_name hook exited with code $exitCode (error)"
26
+ exit $exitCode
27
+ fi
28
+
29
+ exit 0
30
+ fi
Original file line number Diff line number Diff line change 12
12
13
13
- ` ListView ` : Use new DragDropFiles control [ #856 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/856 )
14
14
- ` FilePicker ` : Use new DragDropFiles control [ #856 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/856 )
15
+ - ` ListView ` : Ability to provide custom sorting function [ #880 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/880 )
16
+ - ` FilePicker ` : Allow panel on FilePicker to be invoked after first load [ #886 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/886 )
17
+ - ` FilePicker ` : Allow FilePicker button to be hidden [ #887 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/887 )
18
+ - ` FilePicker ` : Changed save function to return an array of objects
15
19
16
20
### Fixes
17
21
20
24
- ` FilePicker ` : React crash on large folders [ #826 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/826 )
21
25
- ` ListItemAttachments ` : updated filename replacement logic [ #873 ] ( https://github.com/pnp/sp-dev-fx-controls-react/pull/873 )
22
26
- ` RichText ` : Adding a link does not work [ #875 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/875 )
27
+ - ` FilePicker ` : Stock images url is getting a 404 server error [ #882 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/882 )
23
28
24
29
### Contributors
25
30
Original file line number Diff line number Diff line change 12
12
13
13
- ` ListView ` : Use new DragDropFiles control [ #856 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/856 )
14
14
- ` FilePicker ` : Use new DragDropFiles control [ #856 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/856 )
15
+ - ` ListView ` : Ability to provide custom sorting function [ #880 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/880 )
16
+ - ` FilePicker ` : Allow panel on FilePicker to be invoked after first load [ #886 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/886 )
17
+ - ` FilePicker ` : Allow FilePicker button to be hidden [ #887 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/887 )
18
+ - ` FilePicker ` : Changed save function to return an array of objects
15
19
16
20
### Fixes
17
21
20
24
- ` FilePicker ` : React crash on large folders [ #826 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/826 )
21
25
- ` ListItemAttachments ` : updated filename replacement logic [ #873 ] ( https://github.com/pnp/sp-dev-fx-controls-react/pull/873 )
22
26
- ` RichText ` : Adding a link does not work [ #875 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/875 )
27
+ - ` FilePicker ` : Stock images url is getting a 404 server error [ #882 ] ( https://github.com/pnp/sp-dev-fx-controls-react/issues/882 )
23
28
24
29
### Contributors
25
30
You can’t perform that action at this time.
0 commit comments