2016-04-13 14:58:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ ! -d public/js ]; then
|
|
|
|
mkdir public/js
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -d public/views ]; then
|
2016-04-14 10:34:14 +02:00
|
|
|
mkdir -p public/views/dialogs
|
2016-04-13 14:58:41 +02:00
|
|
|
fi
|
|
|
|
|
2016-04-13 17:03:50 +02:00
|
|
|
if [ ! -d public/img ]; then
|
|
|
|
mkdir public/img
|
|
|
|
fi
|
|
|
|
|
2016-04-13 14:58:41 +02:00
|
|
|
if [ -d node_modules/ng_backoffice ]; then
|
2016-04-14 10:34:14 +02:00
|
|
|
find node_modules/ng_backoffice/views -maxdepth 1 -name "*.html" -exec ln -s $(realpath {}) public/views/ \; 2>/dev/null
|
|
|
|
find node_modules/ng_backoffice/views/dialogs -maxdepth 1 -name "*.html" -exec ln -s $(realpath {}) public/views/dialogs/ \; 2>/dev/null
|
2016-04-13 17:03:50 +02:00
|
|
|
find node_modules/ng_backoffice/src -name "*.js" -exec ln -s $(realpath {}) public/js/ \; 2>/dev/null
|
|
|
|
find node_modules/ng_backoffice/css -name "*.css" -exec ln -s $(realpath {}) public/css/ \; 2>/dev/null
|
|
|
|
find node_modules/ng_backoffice/img -name "*" -exec ln -s $(realpath {}) public/img/ \; 2>/dev/null
|
|
|
|
|
|
|
|
pushd node_modules/ng_backoffice
|
|
|
|
grunt concat
|
|
|
|
popd
|
2016-04-13 14:58:41 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d node_modules/ng_client ]; then
|
2016-04-13 17:03:50 +02:00
|
|
|
find node_modules/ng_client/views -name "*.html" -exec ln -s $(realpath {}) public/views/ \; 2>/dev/null
|
|
|
|
find node_modules/ng_client/src -name "*.js" -exec ln -s $(realpath {}) public/js/ \; 2>/dev/null
|
|
|
|
find node_modules/ng_client/css -name "*.css" -exec ln -s $(realpath {}) public/css/ \; 2>/dev/null
|
|
|
|
find node_modules/ng_client/img -name "*" -exec ln -s $(realpath {}) public/img/ \; 2>/dev/null
|
|
|
|
|
|
|
|
pushd node_modules/ng_backoffice
|
|
|
|
grunt concat
|
|
|
|
popd
|
2016-04-13 14:58:41 +02:00
|
|
|
fi
|
|
|
|
|