2016-04-13 17:03:50 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-09-17 17:47:46 +02:00
|
|
|
pwd
|
|
|
|
|
2016-04-13 17:03:50 +02:00
|
|
|
if [ -d node_modules/ng_backoffice ]; then
|
|
|
|
pushd node_modules/ng_backoffice
|
2016-09-17 17:47:46 +02:00
|
|
|
node_modules/.bin/grunt compile_translations
|
|
|
|
node_modules/.bin/grunt concat
|
2016-04-13 17:03:50 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
if [ -d node_modules/ng_client ]; then
|
|
|
|
pushd node_modules/ng_client
|
2016-09-17 17:47:46 +02:00
|
|
|
node_modules/.bin/grunt compile_translations
|
|
|
|
node_modules/.bin/grunt concat
|
2016-04-13 17:03:50 +02:00
|
|
|
fi
|