forked from tracim/tracim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_full_frontend_standalone.sh
executable file
·154 lines (117 loc) · 7.4 KB
/
build_full_frontend_standalone.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/bin/bash
# DEPRECATED - CH - 2021-12-29 - Since Tracim now only uses optimized bundles, this script is deprecated
# Main in bottom
YELLOW='\033[1;33m'
BROWN='\033[0;33m'
GREEN='\033[1;32m'
RED='\033[1;31m'
NC='\033[0m' # No Color
log() {
echo -e "\n${YELLOW}[$(date +'%H:%M:%S')]${BROWN} $ $1${NC}"
}
loggood() {
echo -e "\n${YELLOW}[$(date +'%H:%M:%S')]${GREEN} $ $1${NC}"
}
logerror() {
echo -e "\n${RED}[$(date +'%H:%M:%S')]${RED} $ $1${NC}"
exit 1
}
dev=""
if [ "$1" = "dev" ]; then
dev="-dev"
fi
echo -e "\n${BROWN}/!\ ${NC}this script does not run 'yarn install'\n${BROWN}/!\ ${NC}"
DEFAULTDIR=$(pwd)
export DEFAULTDIR
# create folder $DEFAULTDIR/frontend/dist/app/ if no exists
mkdir -p $DEFAULTDIR/frontend/dist/app/ || logerror "Failed to make directory $DEFAULTDIR/frontend/dist/app/"
log "Building tracim_frontend_lib for tests"
yarn workspace tracim_frontend_lib run build$dev && loggood "success" || logerror "Could not build tracim_frontend_lib"
cd "$DEFAULTDIR/frontend_app_file" || exit
log "Building standalone tracim_frontend_file"
rm -f /dist/file.app.standalone.js
rm -f ../frontend/dist/app/file.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app tracim_frontend_file"
yarn run build$dev
cp dist/file.app.standalone.js ../frontend/dist/app/file.app.standalone.js || logerror "Error: could not cp app tracim_frontend_file"
cd "$DEFAULTDIR/frontend_app_html-document" || exit
log "Building standalone tracim_frontend_html-document"
rm -f /dist/html-document.app.standalone.js
rm -f ../frontend/dist/app/html-document.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app html-document"
yarn run build$dev
cp dist/html-document.app.standalone.js ../frontend/dist/app/html-document.app.standalone.js || logerror "Error: could not cp app html-document"
cd "$DEFAULTDIR/frontend_app_thread" || exit
log "Building standalone tracim_frontend_thread"
rm -f /dist/thread.app.standalone.js
rm -f ../frontend/dist/app/thread.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app tracim_frontend_thread"
yarn run build$dev
cp dist/thread.app.standalone.js ../frontend/dist/app/thread.app.standalone.js || logerror "Error: could not cp app tracim_frontend_thread"
cd "$DEFAULTDIR/frontend_app_collaborative_document_edition" || exit
log "Building standalone tracim_frontend_collaborative_document_edition"
rm -f /dist/collaborative_document_edition.app.standalone.js
rm -f ../frontend/dist/app/collaborative_document_edition.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app tracim_frontend_collaborative_document_edition"
yarn run build$dev
cp dist/collaborative_document_edition.app.standalone.js ../frontend/dist/app/collaborative_document_edition.app.standalone.js || logerror "Error: could not cp app tracim_frontend_collaborative_document_edition"
cd "$DEFAULTDIR/frontend_app_folder_advanced" || exit
log "Building standalone tracim_frontend_folder_advanced"
rm -f /dist/folder.app.standalone.js
rm -f ../frontend/dist/app/folder.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app tracim_frontend_folder_advanced"
yarn run build$dev
cp dist/folder.app.standalone.js ../frontend/dist/app/folder.app.standalone.js || logerror "Error: could not cp app tracim_frontend_folder_advanced"
cd "$DEFAULTDIR/frontend_app_share_folder_advanced" || exit
log "Building standalone tracim_frontend_share_folder_advanced"
rm -f /dist/share_folder.app.standalone.js
rm -f ../frontend/dist/app/share_folder.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app tracim_frontend_share_folder_advanced"
yarn run build$dev
cp dist/share_folder.app.standalone.js ../frontend/dist/app/share_folder.app.standalone.js || logerror "Error: could not cp app tracim_frontend_share_folder_advanced"
cd "$DEFAULTDIR/frontend_app_workspace" || exit
log "Building standalone tracim_frontend_workspace"
rm -f /dist/workspace.app.standalone.js
rm -f ../frontend/dist/app/workspace.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app tracim_frontend_workspace"
yarn run build$dev
cp dist/workspace.app.standalone.js ../frontend/dist/app/workspace.app.standalone.js || logerror "Error: could not cp app tracim_frontend_workspace"
cd "$DEFAULTDIR/frontend_app_workspace_advanced" || exit
log "Building standalone tracim_frontend_workspace_advanced"
rm -f /dist/workspace_advanced.app.standalone.js
rm -f ../frontend/dist/app/workspace_advanced.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app tracim_frontend_workspace_advanced"
yarn run build$dev
cp dist/workspace_advanced.app.standalone.js ../frontend/dist/app/workspace_advanced.app.standalone.js || logerror "Error: could not cp app tracim_frontend_workspace_advanced"
cd "$DEFAULTDIR/frontend_app_admin_workspace_user" || exit
log "Building standalone tracim_frontend_admin_workspace_user"
rm -f /dist/admin_workspace_user.app.standalone.js
rm -f ../frontend/dist/app/admin_workspace_user.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app tracim_frontend_admin_workspace_user"
yarn run build$dev
cp dist/admin_workspace_user.app.standalone.js ../frontend/dist/app/admin_workspace_user.app.standalone.js || logerror "Error: could not cp app tracim_frontend_admin_workspace_user"
cd "$DEFAULTDIR/frontend_app_agenda" || exit
log "Building standalone tracim_frontend_agenda"
rm -f /dist/agenda.app.standalone.js
rm -f ../frontend/dist/app/agenda.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app tracim_frontend_agenda"
yarn run build$dev
cp dist/agenda.app.standalone.js ../frontend/dist/app/agenda.app.standalone.js || logerror "Error: could not cp app tracim_frontend_agenda"
cd "$DEFAULTDIR/frontend_app_collaborative_document_edition" || exit
log "Building standalone tracim_frontend_collaborative_document_edition"
rm -f /dist/collaborative_document_edition.app.standalone.js
rm -f ../frontend/dist/app/collaborative_document_edition.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app tracim_frontend_collaborative_document_edition"
yarn run build$dev
cp dist/collaborative_document_edition.app.standalone.js ../frontend/dist/app/collaborative_document_edition.app.standalone.js || logerror "Error: could not cp app tracim_frontend_collaborative_document_edition"
cd "$DEFAULTDIR/frontend_app_gallery" || exit
log "Building standalone tracim_frontend_gallery"
rm -f /dist/gallery.app.standalone.js
rm -f ../frontend/dist/app/gallery.app.standalone.js
cp --update ./src/debug.js.sample ./src/debug.js || logerror "Error: could cp debug.js.sample in app tracim_frontend_gallery"
yarn run build$dev
cp dist/gallery.app.standalone.js ../frontend/dist/app/gallery.app.standalone.js || logerror "Error: could not cp app tracim_frontend_gallery"
# build Tracim
log "building the Tracim frontend"
yarn workspace tracim run build$dev && loggood "success" || logerror "Could not build the Tracim frontend."
loggood "-- frontend build successful."