-
Notifications
You must be signed in to change notification settings - Fork 0
/
link.sh
executable file
·56 lines (46 loc) · 2.46 KB
/
link.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
# this file is used for local development
# it links the syntest-framework libraries to the syntest-javascript libraries
# NOTE: we cannot simply delete the entire @syntest folder since there are always local syntest-javascript dependencies here
# framework libraries
rm -rf node_modules/@syntest/analysis
rm -rf node_modules/@syntest/cfg
rm -rf node_modules/@syntest/cli-graphics
rm -rf node_modules/@syntest/diagnostics
rm -rf node_modules/@syntest/logging
rm -rf node_modules/@syntest/metric
rm -rf node_modules/@syntest/module
rm -rf node_modules/@syntest/prng
rm -rf node_modules/@syntest/search
rm -rf node_modules/@syntest/storage
# framework plugins
rm -rf node_modules/@syntest/plugin-event-listener-state-storage
rm -rf node_modules/@syntest/plugin-event-listener-websocket
rm -rf node_modules/@syntest/plugin-metric-middleware-file-writer
rm -rf node_modules/@syntest/plugin-metric-middleware-statistics
rm -rf node_modules/@syntest/plugin-search-algorithm-experimental
# framework tools
rm -rf node_modules/@syntest/base-language
rm -rf node_modules/@syntest/cli
rm -rf node_modules/@syntest/init
cd node_modules/@syntest
# framework libraries
ln -s ../../../syntest-framework/libraries/analysis analysis
ln -s ../../../syntest-framework/libraries/cfg cfg
ln -s ../../../syntest-framework/libraries/cli-graphics cli-graphics
ln -s ../../../syntest-framework/libraries/diagnostics diagnostics
ln -s ../../../syntest-framework/libraries/logging logging
ln -s ../../../syntest-framework/libraries/metric metric
ln -s ../../../syntest-framework/libraries/module module
ln -s ../../../syntest-framework/libraries/prng prng
ln -s ../../../syntest-framework/libraries/search search
ln -s ../../../syntest-framework/libraries/storage storage
# framework plugins
ln -s ../../../syntest-framework/plugins/plugin-event-listener-state-storage plugin-event-listener-state-storage
ln -s ../../../syntest-framework/plugins/plugin-event-listener-websocket plugin-event-listener-websocket
ln -s ../../../syntest-framework/plugins/plugin-metric-middleware-file-writer plugin-metric-middleware-file-writer
ln -s ../../../syntest-framework/plugins/plugin-metric-middleware-statistics plugin-metric-middleware-statistics
ln -s ../../../syntest-framework/plugins/plugin-search-algorithm-experimental plugin-search-algorithm-experimental
# framework tools
ln -s ../../../syntest-framework/tools/cli cli
ln -s ../../../syntest-framework/tools/base-language base-language
ln -s ../../../syntest-framework/tools/init init