12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #!/bin/bash
- DEFAULT_THEME_ID="select value from core_config_data where path = 'design/theme/theme_id'"
- THEME_PATH="select theme_path from theme where theme_id in ($DEFAULT_THEME_ID);"
- VENDOR_THEME=$(bin/n98-magerun2 db:query "$THEME_PATH" | sed -n 2p | cut -d$'\r' -f1)
- THEME=$(echo "$VENDOR_THEME" | cut -d'/' -f2)
- LOCALE_CODE=$(bin/magento config:show general/locale/code | cut -d$'\r' -f1 | sed 's/ *$//g')
- # Generate local-theme.js for custom theme
- read -r -d '' GEN_THEME_JS << EOM
- var fs = require('fs');
- var util = require('util');
- var theme = require('./dev/tools/grunt/configs/themes');
- theme['$THEME'] = {
- area: 'frontend',
- name: '$VENDOR_THEME',
- locale: '$LOCALE_CODE',
- files: [
- 'css/styles-m',
- 'css/styles-l'
- ],
- dsl: 'less'
- };
- fs.writeFileSync('./dev/tools/grunt/configs/local-themes.js', '"use strict"; module.exports = ' + util.inspect(theme), 'utf-8');
- EOM
- if [ -z "$VENDOR_THEME" ] || [ -z "$THEME" ]; then
- echo "Using Magento/luma theme for grunt config"
- THEME=luma
- bin/clinotty cp ./dev/tools/grunt/configs/themes.js ./dev/tools/grunt/configs/local-themes.js
- else
- echo "Using $VENDOR_THEME theme for grunt config"
- bin/node -e "$GEN_THEME_JS"
- fi
- # Create files from sample files if they do not yet exist
- test -f src/package.json || cp src/package.json.sample src/package.json
- test -f src/Gruntfile.js || cp src/Gruntfile.js.sample src/Gruntfile.js
- test -f src/grunt-config.json || cp src/grunt-config.json.sample src/grunt-config.json
- # Disable grunt-contrib-jasmine on ARM processors (incompatible)
- if [ "$(uname -m)" == "arm64" ]; then
- sed -e 's/"grunt-contrib-jasmine": "[~.0-9]*",//' src/package.json > package.json \
- && mv package.json src/package.json
- fi
- # Enable these custom files on docker-compose.dev.yml so custom updates are persisted
- sed -e 's/grunt-config.json.sample/grunt-config.json/' docker-compose.dev.yml > docker-compose.dev.yml.updated \
- && mv docker-compose.dev.yml.updated docker-compose.dev.yml
- sed -e 's/Gruntfile.js.sample/Gruntfile.js/' docker-compose.dev.yml > docker-compose.dev.yml.updated \
- && mv docker-compose.dev.yml.updated docker-compose.dev.yml
- sed -e 's/package.json.sample/package.json/' docker-compose.dev.yml > docker-compose.dev.yml.updated \
- && mv docker-compose.dev.yml.updated docker-compose.dev.yml
- bin/restart app phpfpm
- bin/npm install ajv@^5.0.0 --save
- bin/npm install
- bin/magento cache:clean
- bin/grunt clean
- bin/grunt exec:$THEME
- bin/grunt less:$THEME
|