mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-03-16 22:10:32 +00:00
19 lines
486 B
Text
Executable file
19 lines
486 B
Text
Executable file
echo 'building minified src files';
|
|
node build.js build-minified;
|
|
|
|
echo 'creating build.sh with all module combinations (minified and not)';
|
|
node create_build_script.js;
|
|
|
|
echo 'removing all previous module files';
|
|
rm -rf ../fabricjs.com/build/files;
|
|
mkdir ../fabricjs.com/build/files;
|
|
|
|
echo 'building actual distribution files with all module combinations (minified and not)';
|
|
./build.sh;
|
|
|
|
echo 'removing tmp files';
|
|
rm -rf tmp;
|
|
mkdir tmp;
|
|
|
|
echo 'erasing build.sh';
|
|
echo "" > build.sh;
|