Initial commit: is_themecore out of the box v4.1.3

This commit is contained in:
Isabelle Anno
2025-11-19 13:17:30 +01:00
committed by Isabelle
commit 5d80babd5a
333 changed files with 33026 additions and 0 deletions

21
is_themecore/Makefile Normal file
View File

@ -0,0 +1,21 @@
build-module-zip: build-composer build-assets build-zip
build-zip:
rm -rf is_themecore.zip
cp -Ra $(PWD) /tmp/is_themecore
rm -rf /tmp/is_themecore/config_*.xml
rm -rf /tmp/is_themecore/_theme_dev/node_modules
rm -rf /tmp/is_themecore/_module_dev/node_modules
rm -rf /tmp/is_themecore/.github
rm -rf /tmp/is_themecore/.gitignore
rm -rf /tmp/is_themecore/.php-cs-fixer.cache
rm -rf /tmp/is_themecore/.git
mv -v /tmp/is_themecore $(PWD)/is_themecore
zip -r is_themecore.zip is_themecore
rm -rf $(PWD)/is_themecore
build-composer:
composer install --no-dev -o
build-assets:
cd _module_dev && . ${HOME}/.nvm/nvm.sh && nvm install && npm install && npm run build