forked from facebookarchive/connect-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pkg.sh
executable file
·70 lines (60 loc) · 1.58 KB
/
pkg.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/bash
#
# Copyright Facebook Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FILES=(
src/third-party/json2.js
src/core/prelude.js
src/core/api.js
src/core/auth.js
src/core/component.js
src/core/content.js
src/core/cookie.js
src/core/init.js
src/core/event.js
src/core/flash.js
src/core/frames.js
src/core/md5sum.js
src/core/qs.js
src/core/ui.js
src/core/xd.js
src/common/loader.js
src/common/array.js
src/common/string.js
src/common/type.js
src/common/dom.js
src/common/obj.js
src/data/waitable.js
src/data/query.js
src/data/data.js
src/css/button_css.js
src/css/iframe_widget_css.js
src/css/share_button_css.js
src/xfbml/element.js
src/xfbml/xfbml.js
src/xfbml/helper.js
src/xfbml/iframe_widget.js
src/xfbml/edge_widget.js
src/xfbml/tags/add_to_wishlist.js
src/xfbml/tags/comments.js
src/xfbml/tags/fan.js
src/xfbml/tags/like.js
src/xfbml/tags/live_stream.js
src/xfbml/tags/loginbutton.js
src/xfbml/tags/name.js
src/xfbml/tags/profilepic.js
src/xfbml/tags/serverfbml.js
src/xfbml/tags/sharebutton.js
)
cat ${FILES[@]}