Make the sync script exclude some un-replaceable files and remove ll the other ones

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2020-04-18 14:01:05 +02:00
parent b529f7cf52
commit db7a755134
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -11,9 +11,23 @@ echo "Using root dir: $ROOT_DIR"
cd ${ROOT_DIR}
# Uncomment when all the modules are in the package.json file
#echo 'Delete all files'
#find ./js/vendor/ -not -path './openlayers/*' -type f -delete
# Remove each '-not -path' when a new package can be used from npm
echo 'Delete vendor files we can replace from source dists'
find ./js/vendor/ \
-not -path './js/vendor/openlayers/*' \
-not -path './js/vendor/sprintf.js' \
-not -path './js/vendor/jqplot/jquery.jqplot.js' \
-not -path './js/vendor/jqplot/plugins/jqplot.*.js' \
-not -path './js/vendor/jquery/jquery-ui.min.js' \
-not -path './js/vendor/jquery/jquery.uitablefilter.js' \
-not -path './js/vendor/jquery/jquery.sortableTable.js' \
-not -path './js/vendor/jquery/jquery.svg.js' \
-not -path './js/vendor/jquery/jquery.fullscreen.js' \
-not -path './js/vendor/jquery/jquery-ui-timepicker-addon.js' \
-not -path './js/vendor/jquery/jquery.event.drag-2.2.js' \
-not -path './js/vendor/jquery/jquery.debounce-1.0.6.js' \
-not -path './js/vendor/jquery/jquery.ba-hashchange-1.3.js' \
-type f -delete -print
echo 'Updating codemirror'
cp ./node_modules/codemirror/addon/hint/sql-hint.js ./js/vendor/codemirror/addon/hint/sql-hint.js