diff --git a/.gitmodules b/.gitmodules index 251d1838..e69de29b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +0,0 @@ -[submodule "graphic-walker"] - path = graphic-walker - url = https://github.com/Kanaries/graphic-walker - branch = main diff --git a/graphic-walker b/graphic-walker deleted file mode 160000 index c21f68b7..00000000 --- a/graphic-walker +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c21f68b7bbd85e5e923cfcb3af1ed5331f3636c9 diff --git a/scripts/compile.sh b/scripts/compile.sh index 038403da..72ec24ed 100755 --- a/scripts/compile.sh +++ b/scripts/compile.sh @@ -4,7 +4,6 @@ file_dir=$(dirname $(dirname $0) ) echo $cur_dir echo $file_dir APP=$file_dir/app -GW=$file_dir/graphic-walker/packages/graphic-walker (cd $file_dir && if ! command -v yarn; then npm install -g yarn; fi) && \ (cd $APP && yarn && yarn build) diff --git a/scripts/develop.sh b/scripts/develop.sh deleted file mode 100755 index 33c18451..00000000 --- a/scripts/develop.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -cur_dir=$(pwd) -file_dir=$(dirname $(dirname $0) ) -echo $cur_dir -echo $file_dir -APP=$file_dir/app -GW=$file_dir/graphic-walker/packages/graphic-walker - -(cd $file_dir; if ! command -v yarn; then npm install -g yarn; fi ) - -(cd $file_dir; pip install -e .) -(cd $GW; yarn link) && \ - (cd $APP; yarn link @kanaries/graphic-walker) && \ - (cd $APP; yarn) && \ - ((cd $GW; yarn build -w) & (cd $APP; yarn dev -w) ); -(cd $APP; yarn unlink) -cd $cur_dir \ No newline at end of file